@font-face {
    font-family: Poppins;
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: Poppins;
    src: url(../fonts/Poppins-Medium.ttf);
    font-weight: 500;
}

:root {
    --primary-color: #6996E5;
    --primary-desaturated-color: #9ba9c2;
    --secondary-color: #DBD56E;
    --secondary-dark-color: #b3ae59;
    --text-color: #eef1fa;
    --light-color: #c7ced9;
    --three-background-color: #171a21;
    --sidebar-background-color: #212429;
    --main-background-color: #191a1e;
}

::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

html, body {
    height: 100vh;
    scrollbar-width: none;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: 'Poppins', sans-serif;
}

#webgl-output {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
}

.container {
    margin: 0 100px;
    width: auto;
    position: relative;
    top: 48%;
    font-size: 5vmin;
}

.container h1 {
    margin: 0;
    width: 100%;
    color: #3f5a8c;
    font-size: 1em;
}

.container h1 img {
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.32em;
    vertical-align: middle;
}

.container h2 {
    margin: 16px 0 20px 0;
    width: 100%;
    color: #a9afb9;
    font-size: max(0.5em, 15px);
}

.container h2 a {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.2s ease-in-out;
}

.container p {
    margin: 12px 0;
    color: #a9afb9;
    font-size: max(0.42em, 15px);
}

h2 a:link, p a:link {
    color: #a9afb9;
}

h2 a:visited, p a:visited {
    color: #a9afb9;
}

h2 a:hover, p a:hover {
    color: #e9c2b2;
}

h2 a:active, p a:active {
    color: #e9c2b2;
}

h2 a:link, a:visited, p a:link, p a:visited {
    text-decoration: none;
}

.container > a {
    display: inline-block;
    background-image: radial-gradient(66.11% 66.11% at 50% 33.89%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, 0) 100%),
    linear-gradient(278.88deg, #fff, #66e3ff 28.83%, #a787ff 56.31%, #ffc875 86.49%);
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: normal;
    border: none;
    cursor: pointer;
    border-radius: 99em;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: rgba(23, 26, 33, 0.7) 0 1px 4px;
    user-select: none;
}

.container > a:hover {
    transform: translateY(-1px);
    background-image: radial-gradient(66.11% 66.11% at 50% 33.89%, hsla(0, 0%, 100%, .6) 0, hsla(0, 0%, 100%, 0) 100%),
    linear-gradient(278.88deg, #fff, #66e3ff 28.83%, #a787ff 56.31%, #ffc875 86.49%);
}

.footer {
    color: #1d253b;
    font-size: 1em;
    font-weight: bold;
    position: absolute;
    top: 100%;
    width: 100%;
    text-align: center;
    padding: 18px;
}

.footer a {
    text-decoration: none;
    background-image: radial-gradient(66.11% 66.11% at 50% 33.89%, hsla(340, 100%, 50%, .4) 0, hsla(340, 100%, 50%, 0) 100%),
    linear-gradient(278.88deg, #cc3b4a 0%, #cc007e 28.83%, #5c2e99 56.31%, #d760ff 86.49%);
    color: transparent;
    background-clip: text;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.footer a:hover {
    background-image: radial-gradient(66.11% 66.11% at 50% 33.89%, hsla(340, 100%, 50%, .1) 0, hsla(340, 100%, 50%, 0) 100%),
    linear-gradient(278.88deg, #ff4b5c 0%, #ff009c 28.83%, #9b4dff 56.31%, #d760ff 86.49%);
}


@media (max-width: 1024px) {
    .container {
        top: 46%;
        width: auto;
        padding: 0 5vw;
        margin: 0 auto;
        font-size: 5.2vmin;
    }
}

@media (max-width: 512px) {
    .container {
        top: 42%;
        width: auto;
        padding: 0 4vw;
        margin: 0 auto;
        font-size: 6.2vmin;
    }

     .container > a {
        font-size: 0.56em;
    }

    .footer {
        font-size: 0.8em;
        padding: 14px;
    }
}