@charset "UTF-8";

:root {
    --green: #1e5534;
    --yellow: #ffcd32;
    --darkyellow: #ecb228;
    --red: #eb0000;
    --warning: #a69456;
    --black: black;
    --background: #101010;
    --blue: #5461ff;
    --darkblue: #2f3dda;
    --darkgreen: #174228;
    --font-first: "Roboto",
        sans-serif;
    --font-second: "Josefin Sans",
        sans-serif;
}

textarea:focus,
input:focus {
    outline: none !important;
}

html {
    width: 100% !important;
}

p {
    margin: 0px;
}
a {
    transition: all 0.25s;
}

body {
    width: 100% !important;
    position: relative;
    background-color: var(--background);
    font-family: var(--font-first);
    overflow-x: hidden;
    font-optical-sizing: auto;
    top: 0px !important;
}

.header {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    flex-direction: column;
    background-repeat: none;
    background-position: center;
    background-size: cover;
}

.header-filter {
    height: 100%;
    width: 100%;
    opacity: 45%;
    background-color: black;
}
.header-information {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    background-color: transparent;
}
.header-information > p:nth-of-type(1){
    font-size: 60px;
    font-weight: 200;
    padding: 0px 10px;
    color: white;

}
.header-information>p:nth-of-type(2) {
    font-size: 25px;
    font-weight: 200;
    font-family: var(--font-second);
    color: white;
    text-align: center;
    padding: 0px 10px;

}
@media (min-width: 1800px) {
    .body {
        width: 80% !important;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 2100px) {
    .body {
        width: 80% !important;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 2300px) {
    .body {
        width: 79% !important;
        margin-left: auto;
        margin-right: auto;
    }
}

.body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

.all-uppercase {
    text-transform: uppercase;
}

.word-uppercase {
    text-transform: capitalize;
}

.all-lowercase {
    text-transform: lowercase;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.animation-paused {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
    -moz-animation-play-state: paused !important;
}

@-moz-keyframes spin {
    50% {
        -moz-transform: rotate(10deg);
    }

    100% {
        -moz-transform: rotate(0deg);
    }
}

@-webkit-keyframes spin {
    50% {
        -webkit-transform: rotate(10deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes spin {
    50% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes scale {
    50% {
        -moz-transform: scale(0.9);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@-webkit-keyframes scale {
    50% {
        -webkit-transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes scale {
    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}