: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: rgb(250, 240, 240);*/
}
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;}





.active {background-color: aquamarine;}
article {
    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 ;
    font-family: Tektur;

}
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% ;
    margin-bottom: 15px;
    border-bottom: 4px solid #a1369f 
}

footer {
    height: 50px;
    background-color: white;
    color: black;
    line-height: 30px;
    text-align: center;
    margin: 0px;
    font-family: Tektur;
    width: 100%;
    font-size: 40px;
    border-bottom: 4px solid #a1369f ;
    margin-bottom: 80px;
    ;
}


h2 {
    background-color:  white;
    color: black;
    text-align: right;
    font-family: Teko;
    width: 100%;
    font-size: 40px;
}





article h3 {
    background-color:  white;
    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;
}

  
  /*  a.pop {
        display: block;
width: 100%;
float: left;
text-align: center;
color: white;
text-decoration: none;
background-color: chartreuse;
padding: 15px 30px;
font-size: 20px;
transition: all 1s ease;
margin-bottom: 40px;
    } */



    button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    height: 100px;
    margin-top: 32px;
    padding: 16px 0;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    background: linear-gradient(to right top, var(--green), rgba(255, 255, 255, 0.6));
    border: none;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
}

button:focus {
    outline-color: #fff;
}

button:after {
    width: 50px;
    height: 150%;
    position: absolute;
right: -1000;
    left: -70px;
    top: -25px;
    content: "";
    background-color: rgba(255, 255, 255, 0.4);
    transform: rotate(20deg);
    transition: transform 0.4s;
}