@font-face {
    font-family: 'QuadratBold';
    src: url('../fonts/QuadratGroteskNewW03-Bold.woff2') format('woff2'),
        url('../fonts/QuadratGroteskNewW03-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quadrat';
    src: url('../fonts/QuadratGroteskNewW03-Rg.woff2') format('woff2'),
        url('../fonts/QuadratGroteskNewW03-Rg.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html{
    margin: 0;
}

body{
    margin: 0;
    background: url('../images/back.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    /* filter: blur(10px); */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar{
    /* background: rgba(123,89,149, 1); */
    background: rgba(255, 69, 239, 0.25);
    padding: 20px;
    justify-content: space-between;
    display: flex;
    /* flex: 1; */
    flex-direction: row;
    flex-wrap: wrap;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.container {
	flex: 1;
    vertical-align: middle;
}

.right{
    font-family: Quadrat;
    color: white;
    text-align: right;
    font-size: 18px;
    margin-top: 9px;
}

.nav_link{
    margin: 0px 10px; 
}

a.nav_link{
    color: white;
    text-decoration: none;
}

.desc{
    flex-grow: 1;
    width: fit-content;
    margin: 5vw auto;
    text-align: center;
    /* border: 1px solid white; */
}

.title_desc{
    color: white;
    font-size: 5vw;
    font-family: QuadratBold;
}

.desc_desc{
    color: gray;
    font-size: 12px;
    font-family: Quadrat;
    width: 50%;
    margin: 20px auto;
}

.download_desc{
    margin: 50px auto;
    width: fit-content;
}

.download_btn{
    color: white;
    font-size: 20px;
    font-family: QuadratBold;
    background: rgba(255, 69, 239, 0.25);
    box-shadow: 0px 0px 10px rgba(255, 69, 239,1);
    padding: 15px 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.download_btn:hover{
    background: rgb(255, 69, 239, 0.5);
    box-shadow: 0px 0px 20px rgb(255, 69, 239, 0.5);
    transition: 0.2s;
}

.footer{
    background: rgba(255, 69, 239,0.1);
    padding: 30px;
    font-family: Quadrat;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.25);
}

.err{
    color: red;
    background: rgba(255,0,0,0.1);
    border-radius: 5px;
    font-size: 12px;
    font-family: Quadrat;
    padding: 10px;
    transition: 0.2s;
    margin-top: 20px;
}

.news{
    margin: auto;
    width: fit-content;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
}

.news-item{
    font-family: Quadrat;
    font-size: 12px;
    width: 200px;
    text-align: left;
    color: white;
    border-radius: 5px;
    background: rgba(255, 69, 239, 0.25);
    padding: 10px 30px;
    cursor: pointer;
    transition: 0.2s;
}

.news-item:hover{
    background: rgba(255, 69, 239, 0.5);
}

.n-title{
    height: 75px;
}

.n-description{
}

.load_more{
    background: transparent;
    font-family: Arial;
    color: gray;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 20px auto;
}

.news_big_container{
    position: fixed;
    overflow-x: auto;
    top: 0;
    left: 0;
    /* background: rgba(0,0,0,1); */
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    color: white;
    width: 100%;
    height: 100%;
    padding: 50px;
    text-align: left;
    font-family: Quadrat;
}

.news_big_container_cross{
    position: fixed;
    top: 30px;
    right: 30px;
    font-size: 24px;
    text-shadow: 0px 0px 10px 5px black;
    cursor: pointer;
}

.news_big_container_title{
    /* margin-top: 100px; */
    font-family: QuadratBold;
}

.news_big_container_content{
    color: gray;
}

.news_big_container_desc{
    line-height: 1.5;
    width: 80%;
    /* margin: auto; */
    font-family: Arial;
    font-size: 18px;
    padding: 10px 0px;
    /* background: rgba(0,0,0,0.75); */
    border-radius: 5px;
}

.faq{
    margin: 50px auto; 
    padding: 10px 30px;
    text-align: left;
    color: white;
    width: 80%;
    max-width: 740px;
    border-radius: 5px;
    background: linear-gradient(180deg, rgba(255, 69, 239, 0.35) 0%, rgba(255, 69, 239, 0) 90%);
    font-family: Arial;
    /* border: 1px solid white; */
}

.faq_title{
    font-size: 18px;
    font-family: QuadratBold;
    padding: 10px 0px;
}

.faq_section{
    padding: 10px 10px;
    /* border-bottom: 1px solid rgba(255,255,255,0.5); */
    margin: 10px 0px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.faq_sec_title{
    font-weight: bold;
    padding: 5px 0px;
    cursor: pointer;
}

.faq_sec_desc{
    padding: 5px 0px;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    height: 0px;
    line-height: 1.5;
}

.rules_desc{
    width: 70%;
    font-family: Arial;
    color: white;
    margin: auto;
    text-align: left;
    line-height: 1.5;
}

.rules_title{
    font-family: QuadratBold;
    font-size: 24px;
}

.rules_content{
    
}

@media (max-width: 820px) {

    .desc{
        margin: 20vw auto;
    }

	.title_desc{
        font-size: 10vw;
    }

    .news{
        grid-template-columns: auto;
    }

    .news_big_container_desc{
        width: 80%;
    }

}


::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-track {
	background: black;
}
::-webkit-scrollbar-thumb {
	background: rgba(255,69,239,1);
}
