html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    user-select: none;
    background-color: #00000000;
    overflow: hidden;
}

#content-bg {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    background-color: black;
}

#content {
    color: white;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#bg-image {
    width: 100%;
    height: 100%;
    background-color: white;
    background-image: url("/images/favicon.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: invert(100%) blur(20px) brightness(20%) invert(15%);
    -webkit-filter: invert(100%) blur(20px) brightness(20%) invert(15%);
}

#links {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#links>a {
    padding: 30px;
    background-color: antiquewhite;
    margin-left: 10px;
    margin-right: 10px;
    border: 5px solid antiquewhite;
    transition: scale 0.1s ease-in-out, background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
    border-radius: 100px;
    background-size: 35px;
    background-repeat: no-repeat;
    background-position: center;
}

#links>a:hover {
    scale: 120%;
    background-color: azure;
    border-color: azure;
}

#title {
    margin-left: 2vw;
    padding: 0;
}

#title>h1,
#title>p {
    margin: 0;
    text-align: center;
}

#header {
    margin-top: -10vh;
    display: flex;
    flex-direction: row;
    margin-bottom: 5vh;
    width: 50%;
    justify-content: center;
    align-items: center;
}

#icon-container {
    width: 128px;
    height: 128px;
    overflow: visible;
    box-sizing: border-box;
}

#main-icon {
    width: 128px;
    height: 128px;
    border-radius: 100px;
    filter: brightness(75%);
    -webkit-filter: brightness(75%);
}

.icon-info {
    color: aliceblue;
    position: absolute;
    width: 250px;
    margin-left: -70px;
    padding-top: 15px;
    margin-top: -15px;
    z-index: 5000;
    opacity: 0%;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}

.icon-info>div {
    background-color: #010203;
    padding: 15px;
    border-radius: 15px;
}

#main-icon:hover+.icon-info,
.icon-info:hover {
    opacity: 100%;
    pointer-events: inherit;
}

@media screen and (max-aspect-ratio: 0.75) {

    #header {
        flex-direction: column;
    }

    #links {
        flex-direction: column;
    }

    #links>a {
        margin: 1vh;
    }

    #bg-image {
        background-size: cover;
    }

    #links>a {
        padding: 5vw;
        border: 1vw solid antiquewhite;
        background-size: 5vw;
    }

    #main-icon {
        width: 33vw;
        height: 33vw;
        border-radius: 33vw;
    }

    #icon-container {
        width: 33vw;
        height: 33vw;
    }

    .icon-info {
        margin-left: calc((33vw - 250px) / 2);
    }

    #header {
        margin-top: 0vh;
    }

    html {
        font-size: xx-large;
    }
}