@import url('https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@100..900&display=swap');

html {
    width: 100%;
    background: linear-gradient(135deg, #f5fcff, #a0daf4, #c7e9f5);
}

body {
    text-align: center;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: 400px;
    height: 500px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 40px;
    padding-top: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
    display: flex;
    justify-content: center;
}

#profile_image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    padding: 10px;
    background-color: #d7f8ff;
}

#lyname {
    color: #055e71;
    font-family: 'Lexend Exa';
}

p {
    color: #0a3e51;
    font-family: 'Lexend Exa';
    padding-bottom: 10px;
}

.social img {
    max-width: 45px;
    border-radius: 15px;
    margin: 20px;
}

/* mobile */
@media (max-width: 480px) {
    .card {
        width: 300px;
        height: 420px;
    }

    #profile_image {
        width: 180px;
        height: 180px;
    }
}