/* Works on Firefox */

* {
    scrollbar-width: thin;
    scrollbar-color: #d90429 #15151a;
}


/* Works on Chrome, Edge, and Safari */

::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #15151a;
}

*::-webkit-scrollbar-thumb {
    background-color: #d90429;
    border-radius: 20px;
    border: 3px solid #15151a;
}

body {
    background-color: #1a1a1f;
    margin: 0px;
    font-family: 'Montserrat', sans-serif;
    cursor: default;
    color: #edf2f4;
    text-decoration: none;
    transition: all .5s ease;
}

a {
    color: #edf2f4;
}

header {
    width: 100%;
    height: 80px;
    background-color: #15151a;
    position: fixed;
    opacity: 98%;
}

#loading-body {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #15151a;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-content {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.loading-hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.header-content {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    height: 79px;
}

.header-content-wrapper {
    display: flex;
    flex-shrink: 0;
}

.header-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #edf2f455 50%, rgba(0, 0, 0, 0) 100%)
}

.logo {
    height: 75%;
    margin: auto 16px auto 16px;
    cursor: pointer;
}

.title {
    margin-top: auto;
    margin-bottom: auto;
    font-size: xx-large;
    color: #edf2f4;
    cursor: pointer;
}

.max-w {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.content-body-nogrid {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 20px;
}

.content-title {
    text-align: center;
    color: #edf2f4;
    font-size: 50px;
    margin: 100px auto 50px auto;
}

.content-header {
    line-height: 40px;
    letter-spacing: 1px;
    color: #d90429;
    font-size: 24px;
    margin-top: 30px;
}

.content-header-white {
    line-height: 40px;
    letter-spacing: 1px;
    color: #edf2f4;
    font-size: 24px;
    margin-top: 30px;
    text-align: center;
}

.content-description {
    line-height: 32px;
    letter-spacing: 1px;
    font-size: 15px;
}

footer {
    width: 100%;
    height: 24px;
    position: fixed;
    bottom: 0px;
    background-color: #08090a;
    display: flex;
}

.footer-text {
    color: #edf2f4;
    font-size: small;
    margin: auto;
}


/* Team */

.container {
    display: flex;
    text-align: center;
}

.column {
    flex: 1;
    padding: 10px;
}

.title-team {
    font-weight: bold;
}

.image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 50%;
}


/* Tutorial */

.spacer {
    margin-bottom: 50px;
}

.tutorial-image {
    border-radius: 8px;
}


/*












Loading section













*/

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    transition: all 1s;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

@media only screen and (max-width: 850px) {
    .container {
        flex-direction: column;
    }
    .content-header-white {
        font-size: 18px;
    }
}