@import url(../css/style/header__nav.css);
@import url(../css/style/card.css);
@import url(../css/style/title.css);
@import url(../css/style/pages.css);
@import url(../css/style/sponsor.css);
@import url(../css/style/help.css);
@import url(../css/style/footer.css);
@import url(../js/dist/hystmodal.min.css);
* {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

a,
li,
ul,
ol {
    list-style: none;
    text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h3 {
    font-size: 0.875em;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 40px;
}

p {
    font-size: 0.875em;
    font-weight: 300;
    color: #c0c0c0;
}

::selection {
    background-color: #000;
    color: #fff;
}

.container {
    width: 1440px;
    margin: 0 auto;
}

@media all and (max-width: 1500px) {
    .container {
        width: 1140px;
    }
}

@media all and (max-width: 1250px) {
    .container {
        width: 950px;
    }
}

@media all and (max-width: 1000px) {
    .container {
        width: 90vw;
    }
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: #000;
}

#scrollUp {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 10px 5px;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    position: relative;
    border-radius: .7em;
}

#scrollUp::after {
    font-size: 20px;
    transform: rotate(-90deg);
    display: block;
    content: "\27A4";
    transition: all .2s ease-in-out;
}

#scrollUp:hover::after {
    transform: translateY(-3px) rotate(-90deg);
}