*{
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
.first{
    background: linear-gradient(rgba(0, 0, 0, 0.699),rgba(0, 0, 0, 0.575),rgba(0, 0, 0, 0.507)),url(/pics/our\ story.jpg);
    height:80vh;
    background-size: cover;
    background-position: center;
}
header{
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.185);
    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(1, 41, 1);
    border-radius: 20px;
    border: none;
    width: 150px;
    height: 5vh;
    

}
.nav ul li button a{
    font-size: 15px;
}
.text{
    text-align: center;
    color:white;
    margin-top: 150px;
}
.text h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100px;
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.text h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 50px;
  animation: fadeSlideUp 1s ease-out forwards;
}
.text p{
    font-size: 30px;
}
.second h1{
    font-family: arial;
    color:#634901;
    padding: 30px;
    font-size: 30px;
}
.main{
    display:flex
/*     flex-wrap:wrap; */
/*     justify-content:center; */
}
.rounds{
    position: relative;
    margin-left: 70px;
    margin-top: 40px;
}

.kpics img{
    height:55vh;
    width:25vw;
    border-radius: 50%;
    border:6px solid rgb(1, 41, 1);
    position: relative;
}
.Kpici img{
    height:35vh;
    width:15vw;
    border-radius: 50%;
    border:6px solid rgb(1, 41, 1); 
    position: relative;
    bottom:50px;
}
.greentxt{
/*     height:80vh; */
    background-color:rgb(1, 41, 1) ;
    border-radius: 30px;
    width:500px;
/*     margin:50px */
}
.greentxt p{
    color:white;
    font-family: arial;
    font-size:33px;
    padding:60px;
}
.describe{
    background:url(/pics/Download\ Pan\ Africa\ Seamless\ Pattern\ Concept\ for\ free\ \(1\).jpg);
    height:80vh;
    background-size: cover;
    background-position: center; 
}
.describe p{
    background-color: white;
    position: relative;
    top:50px;
    width:70vw;
    margin-left: 190px;
    padding:30px;
    border-radius: 30px;
    font-family:arial;
    font-size:15px;
}
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;
}

.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 (max-width: 768px) {
    header {
      flex-wrap: wrap;
      padding: 10px 15px;
    }
  
    .logo img {
      height: 25px;
    }
  
    /* Hamburger */
    .hamburger {
      display: block;
      font-size: 30px;
      color: white;
      cursor: pointer;
    }
  
    .nav {
      display: none;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.95);
      position: absolute;
      top: 10vh;
      left: 0;
      z-index: 1000;
    }
  
    .nav.active {
      display: flex;
      justify-content: center;
    }
  
    .nav ul {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding: 20px 0;
    }
  
    .nav ul li {
      margin-right: 0;
    }
  
    .first {
      height: 60vh;
      background-position: center;
      background-size: cover;
    }
  
    .text h1 {
      font-size: 40px;
    }
  
    .text p {
      font-size: 18px;
    }
  
    .main {
      flex-direction: column;
      align-items: center;
    }
  
    .kpics img,
    .Kpici img {
      width: 60vw;
      height: auto;
    }
  
    .greentxt {
      width: 90vw;
      height: auto;
      margin: 30px auto;
    }
  
    .greentxt p {
      font-size: 20px;
      padding: 30px;
    }
  
    .describe {
      height: auto;
      padding: 30px 0;
    }
  
    .describe p {
      width: 85vw;
      margin: 0 auto;
      font-size: 14px;
    }
  
    footer {
      flex-direction: column;
      align-items: center;
      padding: 20px;
      height: auto;
    }
  
    .left {
      gap: 50px;
      align-items: center;
    }
  
    .middle {
      text-align: center;
      margin-top: 20px;
    }
    .social{
        margin-top: 20px;
    }
  
    .soc {
      justify-content: center;
      gap: 10px;
    }
  }
  .hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }
