body, ul, li, h1, h2, a{
  margin: 0;
  padding: 0;
  text-align: right;
  
  
 
  font-family: "Cairo", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
 

}
p{
  font-size: 24px;
  text-align: center;
  color: #412fe9;
   
}

header{
  background-color: #5d4de9;
  padding: 2px 0;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  height: 55px;
}
 

header h1{
  color: white;
  border: 0 solid white;
  display: inline-block;
  padding: 4px 4px;
  border-radius: 36px;
  font-size: 20;
  font-weight: bold;
  height: 80%;
}

.banner{
  position: relative;
}
.banner img{
  max-width: 100%;
}

.banner .welcome span{
  font-size: 1.4em;
}
nav{
  background: #F4F4F4;
  padding: 20px;
  position: sticky;
  top: 57px;
  z-index: 1;
}
nav ul{
   
  white-space: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
nav li{
  text-align: center;
  width: 20%;
  display: inline-block;
  font-size: 24px;
}
nav li a{
  text-decoration: none;
  color: #3316d4;
  font-weight: 400;
}
nav li a:hover{
  text-decoration: underline;
}
nav li a.join{
  color: #c41524;
  font-weight: 400;
}
main{
  max-width: 100%;
  width: 1200px;
  margin: 10px auto;
  padding: 0 40px;
  box-sizing: border-box;
}
article h2{
  color: #323ff6;
  font-size: 48px;
}
article p{
  line-height: 2em;
  color: #4B4B4B;
}
article p::first-line{
  font-weight: bold;
  font-size: 1.2em;
}
.images{
  text-align: center;
  margin: 10px 0;
  white-space: nowrap;
}
.images li{
  display: inline-block;
  list-style-type: none;
  width: 40%;
  margin: 10px 5%;
  position: relative;
}
.images li:hover{
  top: -4px;
}
.images li img{
  max-width: 100%;
}
section.join{
  background: #F4F4F4;
  text-align: center;
  padding: 60px 20px;
  color: #4B4B4B;
}
section.join h2{
  font-size: 36px;
}
form input{
  margin: 20px 0;
  padding: 10px 20px;
  font-size: 24px;
  border-radius: 28px;
  border: 4px solid white;
}
form input:focus{
  border: 4px dashed #4B4B4B;
  outline: none;
}
form input:valid{
  border: 4px solid #71d300;
}
footer {
  background: #F63232;
  color: white;
  /* padding: 1px ;  */
  text-align: center;
  height: 50;
}

footer p {
  background: #F63232;
  color: white;  
  text-align: center;
  
}
.wrapper{
  background: #ffffff;   
  font-size: 24px;  
  
}

.wrapper table{
  width: 90%;
  margin: 10px ;
  border: 1px solid #4B4B4B;
    
}
.wrapper thead {
  text-align: center; 
  background-color: #efecf1;
  color: #412fe9;
  font-size: 18;
}
 
tbody{
  border: 20px solid rgb(168, 161, 161); 
   
}
td {
  border: 1px solid rgb(168, 161, 161); 
  text-align: right;
  padding: 5px 5px;
  color: #412fe9;
  font-size: 16;
}



 
/* responsive styles */

@media screen and (max-width: 1400px){

  .banner .welcome{
    font-size: 40px;
  }

}

@media screen and (max-width: 960px){

  .banner .welcome{
    font-size: 28px;
  }
  nav li{
    font-size: 18px;
  }

}

@media screen and (max-width: 700px){

  .banner .welcome{
    font-size: 20px;
    position: relative;
    text-align: center;
  }
  .banner .welcome br{
    display: none;
  }
  .banner .welcome span{
    font-size: 1em;
  }
  nav li{
    font-size: 18px;
  }
  .images li{
    width: 100%;
    display: block;
    margin: 20px auto;
  }

}

@media screen and (max-width: 560px){

  .banner .welcome{
    font-size: 20px;
    position: relative;
    text-align: center;
  }
  .banner .welcome br{
    display: none;
  }
  .banner .welcome span{
    font-size: 1em;
  }
  nav li{
    display: block;
    width: 100%;
    margin: 12px 0;
  }
  article h2{
    font-size: 36px;
  }
  header, nav{
    position: relative;
    top: 0;
  }
  

}