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

.header {
    background-color: #101010;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-title {
    font-size: 1.5rem;
    font-weight: 600;
}

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

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: url('/img/landing.png') no-repeat center center fixed;
    background-size: cover;
}

body {
    margin: 0;
}
.main {
    flex: 1;
    text-align: center;
    margin: 0 auto;
    width: 640px;
    padding-top: 9.3px;
    padding-bottom: 48px;
}

a:hover {
    color: var(--accent)
}
.hidden {
    display: none;
}

.footer {
    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;
    text-align: center;
    gap: 10px;
}

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

@media (min-width: 1px) and (max-width: 767px) {
    .main {
        margin: 0;
        width: 100vw;
        padding-bottom: 76px;
    }
    header {
        top: calc(100% - 74px);
        border-top: none;
        border-top: 1px solid #ffffff40;
        justify-content: space-between;
        padding-bottom: 18px;
    }
    
    .nav-logo {
        display: none;
    }
    .nav-links {
        display: flex;
        justify-content: space-around;
        width: 100vw;
        position: relative;
        top: -7px;
    }
    .header-link {
        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;
}

.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;
}

.roaid {
    display: none !important;
}
.monospace {
    font-family: monospace;
}