@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap');

* {
    margin: 0;
    font-family: 'Montseddat', sans-serif;
    background-color: black;
}
body{
    color: wheat;
}
h2 {
    text-align: center;
    padding: 0px 0px 30px 0px;
    font-family: 'Montseddat', sans-serif;
    color: wheat;
}
h3 {
    text-align: center; 
    padding: 0px 0px 30px 0px;
    color: wheat;
}

h4 {
    text-align: justify;
    font-weight: normal;
    padding: 0px 30px 30px 30px;
    color: wheat;
    text-indent: 20px;
}
p {
    padding: 5px 0px;
    color: wheat;
}
li{
    list-style: none;
}
text{
    font-family: 'Montseddat', sans-serif;
}
img {
    max-width: 100%;
    margin: 0%;
}
.center-image{
    width: 50%;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
footer {
    text-align: center;
    padding: 30px 0px;
}


a{
    color: wheat;
}

.header{
    position: fixed;
    width: 100%;
    z-index: 3;
}

.header ul{
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.header ul a{
    display: block;
    padding: 20px;
    border-right: 1px solid wheat;
    text-decoration: none;
}

.header ul a:hover{
    background-color: wheat;
}

.header .logo{
    float: left;
    display: block;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
}

.header .menu{
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

.header .menu-icon{
    padding: 30px 20px;
    position: relative;
    float: right;
    cursor: pointer;
}

.header .menu-icon .nav-icon{
    background: wheat;
    display: block;
    height: 2px;
    width: 20px;
    position: relative;
    transition: background .2s ease-out;
}

.header .menu-icon .nav-icon:before{
    background: wheat;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all .2s ease-out;
    top: 5px;
}

.header .menu-icon .nav-icon:after{
    background: wheat;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all .2s ease-out;
    top: -5px;
}

.header .menu-btn{
    display: none;
}

.header .menu-btn:checked ~ .menu{
    max-height: 400px;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon{
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon:before{
    transform: rotate(-45deg);
    top: 0;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon:after{
    transform: rotate(45deg);
    top: 0;
}

.newsletters {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 25px;
}
.newsletters:hover {
    background: #aaa;
}

.back {
    font-style: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px 40px;
    border:none;
}
.back:hover {
    background: #aaa;
}


@media (min-width:1200px){
    .header li{
        float: left;
    }
    .header li a{
        padding: 20px 30px;
    }
    .header .menu{
        clear: none;
        float: right;
        max-height: none;
    }
    .header .menu-icon{
        display: none;
    }
    h4{
        padding: 0px 120px 30px 120px;
        font-size: 20px;
    }
    h2{
        font-size: 30px;
    }
}