@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Archivo', sans-serif;
    color: white;
    --accent: #6CE8F7;
    --accent-white: #d2eaed;
    /*transition: 0.2s ease;*/
}

h1, h2, h3, h4, h5, h6, p, b, a {
    font-family: "Archivo", sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #101010;
}

body {
    margin: 0;
}
.main {
    flex: 1;
    text-align: center;
    margin: 0 auto;
    width: 640px;
    padding-top: 48px;
    padding-bottom: 48px;
}
header {
    height: 56px;
    z-index: 1001;
    padding: 0 0;
    width: 100%;
    border-bottom: 1px solid #ffffff40;
    background-color: #10101080;
    position: fixed;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: left;
    border-radius: 0;
    backdrop-filter: blur(15px);
    transform: translate(-50%);
    box-sizing: border-box;
}
h2 {
    margin-bottom: 4px;
}
h4 {
    color: #ffffff80;
    font-weight: normal;
    margin-top: 4px;
}
.headerlogo {
    height: 32px;
    margin: 4px 12px;
    margin-top: 6px;
}
a {
    text-decoration: none;
    text-decoration-color: var(--accent);
    transition: 0.25s;
}
a:hover {
    color: var(--accent)
}
.hidden {
    display: none;
}
.header-btn {
    color: #d2eaed;
    height: 18px;
    width: 60px;
    vertical-align: top;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0 8px;
    cursor: pointer;
    font-size: 8pt;
    margin-top: 1px;
}
.header-link:hover {
    background-color: #6CE8F720;
}
.header-active {
    color: var(--accent) !important;
    background-color: #6CE8F740;
    font-weight: bold;
}
.header-active .header-btn {
    color: var(--accent);
}
.header-link {
    text-decoration: none;
    margin-right: 8px;
    border-radius: 56px;
    width: 80px;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.nav-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 5px;
}
.right-btn {
    color: #101010;
    background-color: #d2eaed;
    height: 32px;
    border: none;
    border-radius: 10px;
    padding: 0 12px;
    cursor: pointer;
}
.nav-links {
    display: flex;
    justify-content: flex-start;
    width: fit-content;
    position: relative;
    top: 0;
    height: 44px;
}
.nav-logo {
    position: relative;
    top: 0;
}
.right-btns {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.right-section {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-icon {
    height: 27px;
    width: 27px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 48px;
}

.footer {
    display: none;
    z-index: 999;
    background-color: #101010;
    color: var(--accent-white);
    text-align: center;
    padding: 1em 0;
    border-top: 1px solid #ffffff40;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

@media (display-mode: standalone) and (min-width: 1px) and (max-width: 767px) {
    header {
        padding-bottom: 18px;
    }
}

@media (min-width: 1px) and (max-width: 767px) {
    .main {
        margin: 0;
        width: 100vw;
        padding-bottom: 76px;
    }
    header {
        justify-content: center;
        border-radius: 64px;
        margin: 0;
        width: calc(100% - 32px);
        top: unset;
        bottom: 16px;
        padding: 5px;

        box-sizing: border-box;
        border: 1px solid transparent;
        backdrop-filter: blur(2px);
        background-color: rgba(255, 255, 255, 0.05);
        transition: transform .4s cubic-bezier(0.25, 1, 0.5, 1);
        transform-origin: center;
    }

    header::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        border: 0 solid transparent;
        border-radius: 64px;
        box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2);
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: 1;
    }

    header::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 64px;
        background-color: transparent;
        mask: linear-gradient(to right, #000 0%, transparent 7%, transparent 93%, #000 100%),
        linear-gradient(to bottom, #000 0%, transparent 7%, transparent 93%, #000 100%);
        backdrop-filter: blur(12px);
        z-index: -1;
    }

    .nav-logo {
        display: none;
    }
    .nav-links {
        display: flex;
        justify-content: space-evenly;
        width: 100%;
        position: relative;
        top: 0;
        z-index: 99;
    }
    .header-link:last-of-type {
        margin-right: 0;
    }
    .channel-ql {
        height: 200px;
    }
    .landing-item {
        background-attachment: scroll !important;
    }
}
@media (min-width: 1px) and (max-width: 639px) {
    .info-flex {
        flex-direction: column;
    }
}
@media (min-width: 1px) and (max-width: 1099px) {
    .partners-links, .recent-links {
        flex-direction: column;
    }
}

.allen {
    height: 40%;
    width: max-content;
    position: absolute;
    right: 12px;
    bottom: 50px;
}

.footer-about {
    display: inherit;
}

.spinner {
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite, progres 4s linear infinite;
}

@keyframes progres {
    from {
        stroke-dashoffset: 1200;
    }
    to {
        stroke-dashoffset: -1200;
    }
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-fullwidth {
    display:block;
    overflow: hidden;
    height: 64px;
}

.fullwidth-btn {
    width: 100%;
    border-radius: 0;
    height: 64px;
    font-size: 16pt;
    color: #6CE8F7;
    /* background-color: #101010; */
    transition: .5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    position: relative;
    top: -100%;
}

.btn-fullwidth:hover .fullwidth-effect {
    left: 0;
}

.fullwidth-effect {
    z-index: 2;
    position: relative;
    left: -100%;
    transition: left .35s ease;
    width: 100%;
    height: 64px;
    display: block;
    background-color: #6CE8F7
}

.fullwidth-btn:hover {
    color: #101010;
}

.monospace {
    font-family: monospace;
}

.nomargin * {
    margin: 0 !important;
}