*{
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
.first{
    background: linear-gradient(rgba(4, 180, 33, 0.479),rgba(3, 196, 29, 0.13),rgba(3, 146, 10, 0.089)),url(/pics/album/kente\ background.jpg);
    height:100vh;
    background-size: cover;
    background-position: center;

}
header{
    display: flex;
    justify-content: space-between;
    background-color:rgb(0, 32, 0);
    align-items: center;
    height: 10vh;
    padding: 20px 20px;
}
.logo img{
    height:20px;
}
.nav ul {
    display: flex;
    gap: 30px;
}
.nav ul li{
    margin-right: 30px;
}
.nav ul li a{
    font-family: arial;
    font-weight: bold;
    text-decoration: none;
    color:white;
    font-size: 20px;
}
.nav ul li button{
    background-color: rgb(234, 240, 234);
    border-radius: 20px;
    border: none;
    width: 150px;
    height: 5vh;
    

}
.nav ul li button a{
    font-size: 15px;
    color:darkgreen
}
.seperate{
    display:flex;
    justify-content: space-between;
    padding:60px;
}
.seperate img{
    height: 50vh;
    width: 40vw;
    margin-top: 50px;
}
form{
    display:flex;
    flex-direction: column;
    background-color: white;
    height: 70vh;
    border-radius: 30px;
    width:40vw;
    align-items: center;
    font-size: 20px;
    font-family: arial;
}
form input{
    background-color: rgb(0, 100, 0);
    height:10vh;
    width:30vw;
    border: none;
    color:white;
    /* align-items: center; */
    
}
.radio{
    display:flex;
    gap: 10px;
}
.radio input{
    height: 20px;
    width:20px;
    display: flex;
    flex-direction: column;

}
button{
    background-color: rgb(1, 31, 1);
    border-radius: 20px;
    border: none;
    width: 150px;
    height: 5vh;   
    color:white;
}
 button a{
    font-size: 15px;
    color:white;
    text-decoration: none;
 }
 
footer{
    background: linear-gradient(rgba(0, 0, 0, 0.89),rgba(0, 0, 0, 0.692),rgba(0, 0, 0, 0.575)),url(/pics/KenteCloth.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    height: 20vh;
    margin-top: 50px;
    justify-content: space-evenly;
    display: flex;

}
.left{
    display:flex;
    flex-direction:column;
    gap:80px;
}
.left img{
    position: relative;
    top:40px;
}
.copy{
    color:white;
    font-family: arial;
    
}
.middle{
    align-items: center;
    
    /* text-align: center; */
}
.middle h5{
    color:white;
    font-family: arial;
    text-decoration: none;
    font-size: 20px; 
}   

.middle a{
    color:white;
    font-family: arial;
    text-decoration: none;
    font-size: 20px;
}
.middle a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0.3s ease-in-out;
  }
  
  .middle a:hover::after {
    width: 100%;
  }

.social img{
    height:30px;
}
.soc{
    display:flex;
}
.social h5{
    color:white;
    font-family: arial;
    text-decoration: none;
    font-size: 20px;   
}
.soc p{
    position: relative;
    top:5px;
    color:white;
    left: 5px;
    font-family: arial;
}
@media screen and (max-width: 768px) {
    header {
      flex-direction: column;
      height: auto;
      padding: 10px;
      text-align: center;
    }
  
    .nav ul {
      flex-direction: column;
      gap: 15px;
      padding-top: 10px;
    }
  
    .nav ul li {
      margin-right: 0;
    }
  
    .nav ul li a {
      font-size: 16px;
    }
  
    .nav ul li button {
      width: 120px;
      height: 40px;
    }
  
    .first {
      height: auto;
    }
  
    .seperate {
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }
  
    .seperate img {
      width: 80vw;
      height: auto;
      margin-top: 20px;
    }
  
    form {
      width: 90vw;
      height: auto;
      padding: 20px;
      margin-top: 30px;
    }
  
    form input {
      width: 80vw;
      font-size: 16px;
      margin-bottom: 15px;
    }
  
    .radio input {
      height: 18px;
      margin: 5px 0;
    }
  
    button {
      width: 60vw;
      height: 45px;
      font-size: 16px;
      margin-top: 20px;
    }
  
    footer {
      flex-direction: column;
      height: auto;
      padding: 20px;
      gap: 20px;
      text-align: center;
    }
  
    .left {
      align-items: center;
      gap: 20px;
    }
  
    .middle h5,
    .middle a,
    .social h5,
    .soc p {
      font-size: 16px;
    }
  
    .soc {
      justify-content: center;
    }
  
    .middle a::after {
      bottom: -2px;
    }
  }
