:root {
    --green: #38ccae;
    --dark: #1b1b1b;
}




* {margin: 0; padding: 0; font-family: Tektur; box-sizing: border-box; }
body {background-color: #000000;}
#wrapper{
max-width: 1000px;
margin: 0 auto 0 auto;
 background: linear-gradient(to right top, var(--dark), var(--green));
/*background-color: white;*/
}
header img {width: 100%;
  
display: block;}


nav {
    overflow: hidden;
}
nav a {display: block;
width: 33.333%;
float: left;
text-align: center;
color: white;
text-decoration: none;
background-color: chartreuse;
padding: 15px 30px;
font-size: 20px;
transition: all 1s ease;

}








a.menu:hover  {background-color: aquamarine;}



.section{
   background: linear-gradient(to right top, var(--dark), var(--green));
}

.active {background-color: aquamarine;}
article {
   background: linear-gradient(to right top, var(--dark), var(--green));
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0 20px;
}



article h1 {
    font-size: 30px;
    text-align: center;
    margin: 0 10% 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #a1369f ;

}
img.left {
   float: left; 
   margin: 0px 10px 10px 0px;
   width: 25%;
   border-radius: 75% 75%;
   border: 2px solid hsla(229, 80%, 32%, 0.475);
}
article {text-align: justify;
    line-height: 25px;
    font-size: 18px;
    padding: 0px 0px;
}



iframe {
    width: 100% ;
}
footer {
    height: 50px;
 
    color: black;
    line-height: 30px;
    text-align: center;
    margin: 0px;
    font-family: Tektur;
    width: 100%;
    font-size: 40px;
    border-bottom: 4px solid #a1369f ;
}


h2 {
   
    color: black;
    text-align: right;
    font-family: Teko;
    width: 100%;
    font-size: 40px;
}



article h3 {
   /* background-color:  white;*/
    background: linear-gradient(to right top, var(--dark), var(--green));
    color:  black;
    text-align: right;
    font-family: Tektur;
    width: 100%;
    font-size: 30px;
    line-height: 40px;
    border-top: 4px solid #a1369f;
    border-bottom: 4px solid #a1369f ;
    margin-top: 30px;
    margin-bottom: 20px;
}

#menuToggle {
    
          display: flex;
    
          flex-direction: column;
    
          position: absolute;
    
          top: 38px;
    
         left: 20px;
    
       z-index: 1;
    
          -webkit-user-select: none;
    
          user-select: none;
    
       }
    
         
  
        #menuToggle input{
  
          display: flex;
   
          width: 40px;
  
          height: 32px;
    
          position: absolute;
    
          cursor: pointer;
    
          opacity: 0;
              z-index: 2;
    
        }
    
         
    
        #menuToggle span{
   
          display: flex;
    
          width: 29px;
    
          height: 2px;
 
          margin-bottom: 5px;
    
          position: relative;
    
          background: #e18119;
    
          border-radius: 3px;
   
          z-index: 1;
        transform-origin: 5px 0px;
    
          transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    
           background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
   
          opacity 0.55s ease;
    
     }
    
         
   
        #menuToggle span:first-child{
    
          transform-origin: 0% 0%;
    
        }
    
         
    
     #menuToggle span:nth-last-child(2){
    
          transform-origin: 0% 100%;
    
        }
    
         
    
        #menuToggle input:checked ~ span{
    
          opacity: 1;
    
          transform: rotate(45deg) translate(-3px, -1px);
    
          background: #e18119;
    
        }
    
         
    
        #menuToggle input:checked ~ span:nth-last-child(3){
    
          opacity: 0;
    
          transform: rotate(0deg) scale(0.2, 0.2);
    
        }
    
         
    
        #menuToggle input:checked ~ span:nth-last-child(2){

          transform: rotate(-45deg) translate(0, -1px);
    
        }
    
         
    
        #menu-nav{
    padding-left: 30px;
          font-family: 'Open Sans', 'Noto Sans', sans-serif;
    
          position: absolute;
       
    
          box-shadow: 0 0 10px #ffeb0e;

          margin: 30px 0 0 -50px;
    
    
          background-color: chartreuse;
    
          -webkit-font-smoothing: antialiased;
    
          transform-origin: 0% 0%;
    
          transform: translate(-100%, 0);
    
        }
    
         
    
        #menu-nav li{
    
    
          transition-delay: 2s;
    
          list-style: none;
    
          font-size: 17px;

          font-weight: 600;
    
          text-transform: uppercase;
    
        }
    
         
    
        #menu-nav li a{
            width: 100%;
    size: 100%;
          text-decoration: none;
    
          color: #000000;
    
   transition-duration: 0.2s;
    
    transition-timing-function: linear;
    
        }
    
         
    
        #menu-nav li a:hover{
    
          text-decoration: none;
    
          color: #E78300;
    
      }
    
         
    
        #menuToggle input:checked ~ ul{
    
          transform: none;
    
        }







        
        div,
select {
  margin: 8px;
}

/* Labels for checked inputs */
input:checked + label {
  color: red;
}

/* Radio element, when checked */
input[type="radio"]:checked {
  box-shadow: 0 0 0 3px orange;
}

/* Checkbox element, when checked */
input[type="checkbox"]:checked {
  box-shadow: 0 0 0 3px hotpink;
}

/* Option elements, when selected */
option:checked {
  box-shadow: 0 0 0 3px lime;
  color: red;
}
