body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom right, #fbeae2, #f9d8d8);
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
}

.profile {
    margin-bottom: 25px;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 26px;
    color: #4b2b2b;
    margin: 10px 0;
}

p {
    font-size: 18px;
    color: #734a4a;
    margin: 0;
}

.links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    text-decoration: none;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0e5e5, #e2cfcf);
    color: #4b2b2b;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

@media (max-width: 600px) {
    .profile-picture {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
    }

    .btn {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }

    .links {
        gap: 10px;
    }
}
