:root{
    --background-color: #5C7F2F;
    --darker-background-color: #3b521e;
    --accent-color: #A1C339;
    --text-color: #FFFFFF;
    --navbar-height: 80px;
    --footer-height: 50px;

}
*{
    margin: 0;
    padding: 0;
    
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body html{
    min-height: 100%;
    font-family: 
    -apple-system,        /** Safari for OS X and iOS (San Francisco) **/
    BlinkMacSystemFont,   /** Chrome < 56 for OS X (San Francisco) **/
    "Segoe UI",           /** Windows **/
    Roboto,               /** Android **/
    "Helvetica Neue",     /** Basic web fallback **/
    Arial, 
    sans-serif;
    font-size: 10px;
    
    
}


/*--  ###########################  STYLE NAVBAR  ###############################--*/
nav{
    position: fixed;
    background: var(--background-color);
    height: var(--navbar-height);
    width: 100%;
}
label.logo{
    color: var(--text-color);
    font-size: 2.5rem;
    line-height: var(--navbar-height);
    padding: 0 50px;
    font-weight: bold;
}
nav ul{
    float: right;
    margin-right: 20px;
}
nav ul li{
    display: inline-block;
    line-height: var(--navbar-height);
    margin: 0 5px;
}
nav ul li a{
    color: var(--text-color);
    font-size: 1.2rem;
    padding: 7px 13px;
    border-radius: 10px;
    text-transform: uppercase;
}
a.active,a:hover{
    background: var(--darker-background-color);
    transition: 1s;
    font-size: 1.4rem;
}


.toggle_button{
    width: 30px;
    height: 23px;
    position: absolute;
    top: 25px;
    right: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}
.bar{
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 100px;
}

@media(max-width: 1400px){
    label.logo{
        font-size: 1.8rem;
        padding-left: 30px;
    }
    nav ul li a{
        font-size: 20px;
    }
}
@media(max-width: 1200px){
    label.logo{
        font-size: 1.4rem;
        padding-left: 20px;
    }
   .toggle_button{
    display: flex;
   }
   nav ul{
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--darker-background-color);
    top: var(--navbar-height);
    left: -100%;
    text-align: center;
    transition: all .8s ;
   }
   nav ul li{
    display: block;
   }
   nav ul li a{
    font-size: 1.5rem;
    margin: 50px 0;
    line-height: 30px;
   }
   a.active,a:hover{
    background: none;
    font-size: 1.7rem;
    color: var(--accent-color);
    transition: 0.6s;
    animation-fill-mode: backwards;
   }
   #toggle_button:checked ~ul{
    left: 0;
    display: block;

   }
   span.line{
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 100px;
   }
 
}
@media(max-width: 480px){
    label.logo{
        font-size: 0.9rem;
        padding-left: 20px;
    }
   nav ul li{
    display: block;
   }
   nav ul li a{
    font-size: 1.5rem;
    margin: 50px 0;
    line-height: 30px;
   }
   a.active,a:hover{
    background: none;
    font-size: 1.7rem;
    color: var(--accent-color);
    transition: all 0.8s;
    animation-fill-mode: backwards;
   }
   #toggle_button:checked ~ul{
    left: 0;
    display: block;

   }
   span.line{
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 100px;
   }
 
}

/*--  ###########################################################################--*/


/*--  ###########################  STYLE MAIN  ###############################--*/
main{
    position: flex;
    padding: 110px 10px 30px 10px;
    height: 100%;
    width: 100%;
    background-image: url(wood-1846849_1920.jpg);
    
}
.welcome_box {
    width: 100%;
    height: 100%;
    background: var(--text-color);
    color: var(--darker-background-color);
    padding: 30px 30px 30px 30px;
    padding-left: 10%;
    display: block;
    text-align: left;
    border-radius: 8px;
    border-style:solid;
    border-color: var(--background-color);
    border-width: 2%;
}
.news_banner{
    width: 100%;
    padding: 20px;
    display: block;
    justify-content: space-between;
    background-color: var(--darker-background-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1.6rem;
    letter-spacing: 5px;
    font-weight: 900;
    animation:alternate;
    animation-timing-function:cubic-bezier(0.215, 0.610, 0.355, 1);
    animation-duration: 20s;
}
.text_box {
    width: 100%;
    height: 100%;
    background: var(--text-color);
    padding: 30px 30px 30px 30px;
    display: block;
    text-align: center;

    border-radius: 8px;
    border-style: solid;
    border-width: 2%;
    border-color: #5C7F2F;
}
.about{
    font-size: 1.4rem;
}
.news_box {
    width: 100%;
    height: 100%;
    background: var(--text-color);
    padding: 30px 30px 30px 30px;
    display: block;
    text-align: left;
    border-radius: 8px solid 2%;
}

.content_box {
    position:static;
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    border-radius: 8px;

}
.img_logo {
    justify-content:right;
    height: 100%;
    width: 100%;


}
section.nr1{
    padding: 110px 30px 30px 30px;
    display: flex;
    justify-content: space-between;
}
section.nr2{
    padding: 30px 30px 30px 30px;
    display: flex;
    justify-content: space-between;
}
.thema{
    padding: 10px;
    margin: 10px;
    display: flex;
    justify-content: space-between;
    writing-mode:vertical-rl;
    text-align: left;
    background-color: var(--darker-background-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 900;
}
.info_box{
    width: 40%;
    padding: 20px;
    margin-right: 20px;
    text-align: left;
    background-color: var(--text-color);
    color: var(--darker-background-color);
    font-size: 1.4rem;
    border-radius: 8px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}
.container_1{
    
    width: 50%;
    height: 50vh;
    padding-right: 20px;
    padding-left: 20px;
    background: var(--background-color);
    display: flex;
    overflow:hidden;
    scroll-snap-type: x mandatory;
    overflow-x:scroll;
}
.container_1 div{
    
    width: auto;
    height: auto;
    display: flex;
    padding: 1%;
    justify-content: center;
    text-align: center;
    scroll-snap-type: x mandatory;
    border-radius: 5px;
    

}
.box{
    background-color:var(--text-color);
    margin: 20px;
}

@media(max-width: 1200px) {

    .img_logo img{
        justify-content:center;
        align-items: center;
        height: 100%;
        width: 100%;
    }
    section.nr2{
        padding: 30px 30px 30px 30px;
        display: block;
        justify-content: space-between;
    }
    .thema{
        width: 100%;
        padding: 2%;
        margin-bottom: 20px;
        writing-mode:horizontal-tb;
        text-align: left;
        background-color: var(--darker-background-color);
        border-radius: 5%;
        color: var(--text-color);
        font-size: 1.3rem;
        letter-spacing: 2px;
        font-weight: 900;
    }
    .info_box{
        width: 100%;
        text-align: left;
        background-color: var(--text-color);
        color: var(--darker-background-color);
        font-size: 17px;
        border-radius: 8px;
    }
    .container_1{
        
        width: 100%;
        height: 80vh;
        margin: 0;
        background: var(--background-color);
        display: flex;
        justify-content: left;
        overflow:hidden;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        
    }
    .box img{
        min-width: auto;
        min-height: auto;
        display: inline-flex;
        justify-content:center;
        padding: 20px;
        margin:20px;
    }
    .about{
        font-size: 1.2rem;
    }
}
@media(max-width: 400px) {

    .img_logo {
        justify-content:center;
        align-items: center;
        height: 50%;
        width: 50%;
    }
    section.nr2{
        padding: 30px 10px 30px 10px;
        display: block;
        justify-content: space-between;
    }
    .thema{
        width: 100%;
        padding: 2%;
        margin-bottom: 20px;
        writing-mode:horizontal-tb;
        text-align: left;
        background-color: var(--darker-background-color);
        border-radius: 5%;
        color: var(--text-color);
        font-size: 1.1rem;
        letter-spacing: 2px;
        font-weight: 900;
    }
    .info_box{
        width: 100%;
        text-align: left;
        background-color: var(--text-color);
        color: var(--darker-background-color);
        font-size: 17px;
        border-radius: 8px;
    }
    .container_1{
        
        width: 100%;
        height: 80vh;
        margin: 0;
        background: var(--background-color);
        display: flex;
        justify-content: left;
        overflow:hidden;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        
    }
    .box img{
        min-width: auto;
        min-height: auto;
        display: inline-flex;
        justify-content:center;
        padding: 20px;
        margin:20px;
    }
    .about{
        font-size: 1.2rem;
    }
}

/*--  ###########################################################################--*/


/*--  ###########################  STYLE FOOTEER ###############################--*/
footer{
    bottom: 0;
    background: var(--background-color);
    height: var(--footer-height);
    width: 100%;
    text-align: center;
    
}
a.legal{
    color: var(--text-color);
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    line-height: var(--footer-height);
}


