* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    margin:0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    
}
h1,h2,h4,p,h3,h5, a{
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}
span{
  color: #7E2ADB;
}
nav{
  width: 100%;
  position: fixed;
  z-index: 2;
  background-color: white;
}

nav ul{
  list-style: none;
  display: flex;
}

nav ul li{
  margin: 20px;
  padding: 5px;
  
}

nav ul li a{
  text-decoration: none;
  color: black;
}

a.active{
  color: #7E2ADB;
}

nav ul li:hover{
  border-bottom: 3px solid #7E2ADB;
}
.checkbtn{
    font-size: 30px;
    color: #7E2ADB;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
#check{
    display: none;
}
section{
  margin: 0 15%;
  position: relative;
  top: 110px;
  animation-name: motion-body;
  animation-duration: 2s;
 
}
@keyframes motion-body{
  0%{
      top:300px;
  }
  100%{
      top:110px;
  }
}
aside{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.update{
  text-align: center;
}
header{
    margin: 0 auto;
    border-bottom: 2px solid;
    padding-bottom: 15px;
    border-image: radial-gradient(rgba(145, 41, 228, 1),rgba(145, 41, 228, 0.3), rgba(145, 41, 228, 0)) 1;
}
h4{
    text-align: center;
    margin-left: 10px;
}
h2{
  text-align: center;
}
p{
  line-height: 30px;
}
.featured-media{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.featured-media img{
  width: 100%;
}

article{
   padding-bottom: 5%;
   background-color: rgba(255, 255, 255, 1);
}
.content{
    padding: 0 10%;
}
figure img{
    width: 100%;
    margin: 15px 0;
}
p{
    text-align: justify;
}
li{
  font-family: 'Poppins', sans-serif;
  line-height: 30px;
}

footer{
    text-align: center;
}
.button{
  background: linear-gradient(90deg, #7E2ADB 0%, #9129E4 35.94%, #B227F4 100%);
  border-radius: 50px;
  color: white;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 30px;
  transition: .5s;
}
.button:hover{
  color: white;
  opacity: 0.7;
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background: linear-gradient(90deg, #7E2ADB 0%, #9129E4 35.94%, #B227F4 100%);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
 opacity: 0.7;
}
@media (max-width: 800px){
  .checkbtn{
      display: block;
      margin-left: 15px;
      float: right;
    }
    section{
        position: relative;
        top: 100px;
    }
    figure img{
        width: 100%;
    }
    ul{
      position: fixed;
      z-index: 1;
      width: 100%;
      height: 100vh;
      top: 80px;
      left: 100%;
      background-color: white;
      text-align: center;
      transition: all .5s;
      display: flex;
      flex-direction: column;
    }
    nav .ul .li{
      margin: 50px 0;
      line-height: 30px;
    }
    
    nav .ul .li a{
      font-size: 20px;
    }
    
    a:hover,a.active{
      background: none;
      color: #7E2ADB;
    }
    #check:checked ~ ul{
      left: 0;
    }
}
