#black-layer {
    background: rgba(0, 0, 0, 0.5);
    height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#member-card {
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px white;
    border-radius: 10px;
    backdrop-filter: blur(10px);

    width: 80%;
    max-width: 400px;

    margin-top: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;

    animation: memberCard;
    animation-duration: 1s;
}

#profile-img {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 100%;

    height: 100px;
    width: 100px;

    margin-top: 30px;
}

#description {
    margin-bottom: 30px;
    width: 90%;
}

@keyframes memberCard {
    from {
        opacity: 0%;
        margin-top: -10px;
    }
    to {
        opacity: 100%;
    }
}