@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

*{
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    scroll-behavior: smooth;
}

html, body{
    font-size: 1em;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    color: white;
    background: #23272A
}

body{
    display: none;
}

header{
    width: 100%;
    min-height: 93%;
    padding: 2.2em 0;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.6);
    background-image: url("img/header_background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

footer{
    width: 100%;
    min-height: 50%;
    padding: 2.2em 0;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.6);
    background-image: url("img/footer_background.jpg?v=2");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

input, option, select, textarea{
    padding: 1em 2em;
    margin: 2em;
    border: 1px solid white;
    background: #00000090;
    color: white;
    transition: background-color .3s ease;
}

form > input, form > select, form > #appcontent > input, #appcontent > textarea, .app-data > input, .app-data > textarea, .app-answer > input, .app-answer > textarea{
    width: 80%;
    max-width: 800px;
}

.app-data-status > input, .app-data-status > textarea, .app-data-status > select {
    width: 25%;
}

input:hover, textarea:hover{
    border: 1px solid black;
    color: #00000090;
    background: #fff;
    font-weight: 900;
}

nav{
    text-align: center;
    display: none;
    position: fixed;
    background: #00000090;
    width: 100%;
    height: auto;
}

nav > a{
    display: inline-block;
    padding: 1em;
    color: white;
}

nav > a:last-child{
    border: none;
}

a{
    text-decoration: none;
    color: white;
    font-weight: 900;
}

hr{
    width: 10em;
}

strong{
    font-weight: 900;
}

.row{
    text-align: center;
}

.res-box{
    display: flex;
}

.res-box-item{
    flex: 1;
    padding: 5em 0;
}

.res-box-col{
    padding: 2em;
}

.background-image-full{
    padding: 0!important;
}

.background-image-full > img, .res-box-item > img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 20em;
}

.team > h3{
    text-transform: uppercase;
    font-weight: 600;
    background: #23272A;
    color: white;
    padding: 1em 0;
    margin: 0;
    border: none;
}

.team > div{
    padding: 2em 0;
}

.team-desc{
    padding: 1em 2em;
    font-style: oblique;
}

.appcontent-desc{
    font-style: italic;
    text-align: left;
    margin-top: -10px;
    margin-left: 30px;
}

.admin-application{
    padding: 1em 2em;
    border-bottom: 1px solid white;
    display: flex;
    transition: all .3s ease;
}

.admin-application:hover{
    background: white;
    color: #23272A;
    border: 1px solid white;
}

.admin-application > div{
    flex: 1;
    padding: 1em 2em;
}

.discord {
    color: white;
    background: linear-gradient(0deg, #9e1461, #23272A);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 20s ease infinite;
    -moz-animation: AnimationName 20s ease infinite;
    -o-animation: AnimationName 20s ease infinite;
    animation: AnimationName 20s ease infinite;
}

.rules{
    text-align: left;
    list-style: none;
    counter-reset: item;
}

.rules > li{
    padding: 2em 1em;
    border-bottom: 1px solid white;
    counter-increment: item;
}

.rules > li:before {
    font-weight: 900;
    font-size: 2em;
    content: counter(item);
    text-align: center;
    display: inline-block;
    margin-left: -20px;
    margin-bottom: .2em;
    padding: .4em .8em;
    background: white;
    color: black;
}

.app-conversation-box{
    padding: 1em 2em;
    border: 1px solid white;
    width: 100%;
    max-width: 700px;
    display: block;
    margin: .5em auto;
    text-align: center;
}

.app-conversation-by{
    font-weight: 900;
    text-align: left;
}

.app-conversation-data{
    text-align: left;
}

.app-conversation-time{
    text-align: right;
}

@-webkit-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-o-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}

::-webkit-scrollbar {
    width: .4em;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #9e1461;
}

::-webkit-scrollbar-thumb {
    background-color: #9e1461;
    outline: 1px solid #9e1461;
}


@media only screen and (max-width: 1000px) {

    body{
        font-size: 1.7em;
    }

    .res-box{
        flex-direction: column;
    }

    .row:nth-of-type(odd) > .res-box{
        flex-direction: column-reverse;
    }

    .res-box-item{
        padding: 4em .5em;
    }

    input, select, textarea{
        font-size: 2em;
        padding: 1em 2em;
    }

    nav > a{
        font-size: 1.7em;
    }
}