*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Nunito', sans-serif;
}
*::after{
box-sizing: inherit;
}
html{
scroll-behavior: smooth;
}
body{
background-color: black;
color: #fff;
}

/* NAV */
nav{
width: 100%;
height: 70px;
background-color: #CA3838;
color: black;
display: flex;
position: fixed;
top: 0;
justify-content: space-between;
z-index: 99;
}
nav .logo{
width: 20%;
padding: 20px;
cursor: pointer;
}
nav .menu{
width: 70%;
display: flex;
justify-content: space-between;
padding: 15px;
}
nav .menu a{
color: black;
padding: 10px;
text-decoration: none;
border: 1px solid black;
border-radius: 5px;
background-color: #CA3838;
}
nav .menu a:hover{
color: white;
border: 1px solid #fff;
transition: 0.5s;
}
nav .divButton{
display: none;
}

.onOffMenu{
left: 0 !important;
}

@media(max-width:1030px){
    nav .menu a{
    font-size: .8em;
    }
}
@media(max-width:915px){
    nav .menu{
    position: fixed;
    height: 100vh;
    top: 0;
    left: -65%;
    background-color: rgb(82, 19, 19);
    flex-wrap: nowrap;
    width: 60%;
    display: block;
    transition: 0.5s;
    }
    nav .menu a{
    display: block;
    margin: 20px 0;
    font-size: 100%;
    }
    nav .divButton{
    display: flex;
    }
    nav div p i{
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    margin: 20px;
    }
}
/* ADS */
.adsdekstop{
    margin-top: 100px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}
.adsdekstop .banner{
    width: 45%;
    display: inline-block;
    margin-bottom: 10px;
}
.adsdekstop .banner img{
    width: 100%;
    border-radius: 5px;
}
.adsmobile{
    display: none;
}
@media(max-width:500px){
    .adsdekstop{
        display: none;
    }
    .adsmobile{
        display: block;
        margin-top: 100px;
        width: 100%;
        padding: 0 20px;
    }
    .adsmobile .banner{
        width: 100%;
        display: inline-block;
        margin-bottom: 10px;
    }
    .adsmobile .banner img{
        width: 100%;
        border-radius: 5px;
    }
}

/* HEAD */
.head-cerita{
width: 100%;
margin-top: 10px;
justify-content: center;
text-align: center;
color: #fff;
}
.head-cerita img{
margin-top: 20px;
width: 50%;
}

/* PAGE */
.page{
width: 40%;
margin: 20px auto;
border: 1px solid lightgray;
color: #fff;
padding: 20px;
border-radius: 10px;
}
.page .list{
width: 90%;
margin: 0 auto;
padding: 20px 0;
display: flex;
flex-wrap: wrap;
}
.page .list a{
padding: 10px;
color: lightblue;
border: 1px solid #CA3838;
border-radius: 5px;
text-decoration: none;
margin-right: 10px;
margin-left: 10px;
margin-bottom: 10px;
}
.page .list a:hover{
background-color: rgba(173, 216, 230, 0.7);
transition: 0.5s;
color: black;
}
/* GET PASSWORD */
.getpassword{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}
.getpassword div{
    text-align: center;

}
.getpassword div a{
    text-decoration: none;
    border: 1px solid #CA3838;
    background-color: rgba(165, 42, 42, 0.5);
    padding: 10px;
    margin-top: 30px;
    display: block;
    color: #fff;
    border-radius: 10px;
}
.getpassword div form{
    margin-top: 40px;
}
.getpassword div form input{
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px;

}
.getpassword div form button{
    width: 100px;
    height: 40px;
    font-size: 15px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
    background-color: rgba(165, 42, 42, 0.7);
    color: #fff;
    border: none;
}

/* KONTEN */
.content{
width: 90%;
margin: 0 auto;
border: 1px solid #CA3838;
background-color: rgba(214, 57, 57, 0.5);
padding: 40px;
color: #fff;
border-radius: 10px;
}
.content img{
    border-radius: 5px;
    width: 30%;
}

@media (max-width:700px){
    .page{
        width: 70%;
    }
    .content img{
        width: 70%;
    }
}

/* FOOTER */
footer{
width: 100%;
color: #fff;
padding-bottom: 30px;
}
footer .head{
color: #fff;
width: 100%;
padding: 50px 20px;

}
footer .bottom{
width: 100%;
border-top: 1px solid #CA3838;
padding: 50px 20px;
text-align: center;
}
footer .bottom .ads-footer{
width: 100%;
height: 150px;
margin-bottom: 50px;
border: 1px solid lavenderblush;
}
footer .bottom a{
color: #CA3838;
text-decoration: none;
margin: 0 10px;
}
footer .copyright{
text-align: center;
}