* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

@font-face {
    font-family: 'GothamLight';
    src: url("/assets/fonts/Gotham-Light.otf");
    font-display: swap;
}

@font-face {
    font-family: 'GothamBold';
    src: url("/assets/fonts/Gotham-Bold.otf");
    font-display: swap;
}

* {
    font-family: 'GothamLight';
}

@keyframes popupBlur {
    0% {
        filter: blur(20px);
        opacity: 0;
        transform: scale(0.90);
    }

    100% {
        filter: blur(0px);
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popup {
    0% {
        opacity: 0;
        transform: scale(0.90);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popupBgBlur {
    0% {
        backdrop-filter: blur(4px);
        opacity: 0;
        transform: scale(0.90);
    }

    100% {
        backdrop-filter: blur(0px);
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blur {
    0% {
        filter: blur(4px);
    }

    100% {
        filter: blur(0px);
    }
}

@keyframes bgBlur {
    0% {
        backdrop-filter: blur(20px);
    }

    100% {
        backdrop-filter: blur(0px);
    }
}

*:not(body):not(html):not(head):not(.profileCard) {
    animation: popupBlur 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    animation: bgBlur 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

body {
    background-image: url("./assets/background.png");
    background-repeat: no-repeat;
    display: flex;
}

.profileCard {
    animation: popupBgBlur 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px;
    width: fit-content;
    min-width: 300px;
    height: fit-content;
    border-radius: 20px;
    text-align: center;
    margin: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0 ,0.37);
}

.profileCard h1 {
    font-family: 'GothamBold';
    color: white;
}

.profileCard h4 {
    color: gainsboro;
    font-weight: 100;
}

.rowFlexBox {
    display: flex;
    flex-direction: row;
}

.columnFlexBox {
    display: flex;
    flex-direction: column;
}

#profileDescription {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 14px;
}

.profileButtons > div > div > * {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    min-width: 100px;
    height: fit-content;
    margin-top: 10px;
    margin-left: 10px;
}

.profileIcon {
    width: 16px;
    margin-right: 4px;
}

.profileButton {
    width: 100%;
    padding: 15px 25px;
    border-radius: 6px;
    -webkit-transition: background-color 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    transition: background-color 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
}

.profileButton:hover {
    background: rgba(0, 0, 0, 0.3);
}

.profilePicture {
    margin-top: -66px;
    aspect-ratio: 1/1;
    width: 100px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
}

.glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(15px);
}

.hidden {
    display: none;
}
