*{
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(#d8a13c , #d6c6a2);
    background-position: center;
    background-repeat: no-repeat;
  
  }
  
  .navbar {
    background-color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: sticky;
   z-index: 999;
    top: 0;
  }
  
  .navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
  }
  
  .navbar-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .navbar-menu li {
    margin-right: 20px;
  }
  
  .navbar-menu a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .navbar-menu a:hover {
    color: #ddd;
  }
  
  @media screen and (max-width: 768px) {
    .navbar-menu {
      display: none;
    }
  
    .navbar-toggle {
      display: flex;
    }
  
    .navbar-menu.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 40px;
      left: 0;
      background-color: #333;
      width: 100%;
      padding: 20px;
      z-index: 999;
      justify-content: center;
      align-items: center;
      transition: ease-in 2s;
      
    }
  
    .navbar-menu.active li {
      margin-right: 0;
      margin-bottom: 10px;
    }
  }
  
  .main-top{
    padding: 5px 5px 0px 5px;
    
  }

  .main{
 
  display: flex;
  justify-content: center;

  }

  .main img {
    max-width: 80vw;
    background-position: center;
background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
   
  }


  .content{
    padding: 10px 20px ;
  }

 .slider img{

    border-radius: 5px;
 }



 .footer{
    background-color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
   
   
 }
 .container a{
    color: white;
 }

 .main-content{
    background-color: white;
  
    margin: 10px 5px;
    border-radius: 5px;
 }

 .home-text{
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

 }

 .home-text h1{
 
  font-weight: 500;
  font-size: 2.5rem;
  border-bottom: 2px solid orange;
  margin-top: 10px;
  
 }


.main-content-para{

  background-image: linear-gradient(
      rgba(241, 241, 241, 0.719),
      rgba(238, 233, 233, 0.801)
    ),
    url("./images/oum.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}







