body, html {
    height: 100%;
}

.background-image::before {
    content: "";
    background-image: linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.623)),
      url(/static/images/background.png);
    position: fixed;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(5px);
    margin: -10px;
    z-index: -2;
    transform: scale(1.1);
}

.container {
    background-color: #00001D75;
    width: 90vw;
    max-width: 1200px;
    height: fit-content;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 30px;
}

.girl {
    z-index: 100;
    position: fixed;
    height: fit-content;
    max-height: 30vh;
    bottom: -5vw;
    right: -10vh;
}

.upper-profile {
    width: 100%;
    display: flex;
}

.avatar {
    height: 30vh;
    border-radius: 20px;
}

.information {
    color: white;
    margin-left: 30px;
}

.name {
    font-size: 64px;
}

.pronouns {
    font-size: 24px;
}

.social-icons {
    margin-top: 20px;
    color:  white;
    font-size: 30px;
}

.social-icons a {
    padding-right: 10px;
    text-decoration: none;
    color: white;
}

.social-icons a:hover {
    color: antiquewhite;
}

.lower-profile {
    margin-top: 5vh;
    margin-left: 2vw;
    width: 100%;
}

.about-me {
    color: white;
    font-size: 24px;
    max-width: 600px;
}

.spotify-information {
    color: white;
    font-size: 20px;
}

.spotify-information i {
    margin-right: 10px;
}

.fa-spotify {
    color: #299f54;
}

.fa-music {
    color: rebeccapurple;
}

.small-screen {
    display: none;
}

.smallest {
    font-size: 16px;
}

@media (max-width: 500px) {
    .small-screen {
        display: block;
    }
    .large-screen {
        display: none;
    }
    .girl {
        display: none;
    }
}

@media (max-width: 800px) {
    .avatar {
        height: 20vh;
        margin-right: 20px;
    }
    .upper-profile {
        height: 20vh;
}
    .lower-profile {
        height: fit-content;
        margin-left: 0px;
        width: 70vw;
    }
    .information {
        margin-left: 0px;
    }
}

.gamja-flower-regular {
    font-family: "Gamja Flower", sans-serif;
    font-weight: 400;
    font-style: normal;
}
