body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

.profile img {
    width: 100px;

}
.profile h1 {
    font-size: 22px;
    margin: 10px 0;
    color: #132a1a;
}
.profile p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.links .btn {
    display: block;
    background: #132a1a;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
    font-weight: 600;
    transition: 0.3s;
}
.links .btn:hover {
    background: #ba8117;
}

.links .btn i {
    margin-right: 5px;
}

@media (max-width: 480px) {
    .container {
        max-width: 320px;
        padding: 20px;
        margin: 10px;
    }
}