@import url(https://fonts.nerieum.fr/fonts/snpro.css);

* {
    margin: 0;
    padding: 0;
    color: white;
    font-family: "SN Pro", sans-serif;
}

body {
    width: 100dvw;
    height: 100dvh;

    background: url(assets/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
}

.company {
    margin-bottom: -5px;
    position: relative;
    text-align: center;
}

.company img {
    width: 48px;
    height: 48px;
}


.company::after {
    content: 'Co-President of Nerieum';
    display: block;
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: default;

    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    position: absolute;

    font-size: 13px;
    font-weight: 500;

    opacity: 0;
    pointer-events: none;
    transition:
        opacity 220ms ease,
        transform 220ms cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}

.company:hover::after,
.company:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

h1 {
    font-size: 64px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

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

.card {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
    backdrop-filter: blur(10px);

    border: 2px white solid;
    padding: 5px;
    border-radius: 5px;
}

.card > img {
    width: 96px;
    height: 96px;
    border-radius: 10px;
}

#discord_username {
    font-size: 32px;
    display: flex;
    flex-direction: row;
    gap: 10px;

    margin-top: 5px;
    margin-right: 5px;
}

#discord_presence {
    font-size: 20px;
    margin-top: 5px;
}

#discord_tag {
    background-color: rgba(37, 42, 54, .4);
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 10px;

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

    gap: 5px;
}

.socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;

    margin-top: 15px;
}

.socials img {
    width: 32px;
    height: 32px;
}

.socials img.website {
    border-radius: 100%;
}

.socials a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 6px;
}

.socials a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;
    background: #fff;

    transform: scaleX(0);
    transform-origin: center;
    transition: transform .75s cubic-bezier(.2, .8, .2, 1);
    border-radius: 2px;
    pointer-events: none;
}

.socials a:hover::after {
    transform: scaleX(1);
}

#tkt {
    font-size: 0;
    margin-top: -15px;
    margin-bottom: 10px;
}

@media (max-width: 430px) {
    .card {
        width: 95%;
    }

    #discord_avatar {
        width: 82px;
        height: 82px;
    }

    #discord_username {
        font-size: 28px;
    }

    #discord_presence {
        font-size: 20px;
    }
}
