body {
    margin: 0;
    padding: 0;
    font-family: "Fjalla One", sans-serif;
    overflow-x: hidden;
    
  }
  
  nav {
    background-color: 
    rgba(35,31,32,255);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 22px;
    font-family:'Times New Roman', Times, serif;
  }
  
  ul li {
    margin-right: 20px;
    padding: 20px;
    
  }
  
  ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  ul li:hover {
    color: black;
    background: rgb(238,215,169);
    background: linear-gradient(90deg, rgba(238,215,169,1) 0%, rgba(120,74,18,1) 100%);
    margin-right: 20px;
    padding: 20px;
    border-radius: 20px 0;
    transition: .5s;
  }
  
  .checkbtn {
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: none;
  }
  
  #check {
    display: none;
  }
  
  @media (max-width: 1300px) {
    .checkbtn {
      display: block;
      order: 1;
      margin-right: 20px;
    }
    
    ul {
  position: fixed;
  top: 80px;
  right: -100%;
  background-color: rgba(35,31,32,255);
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  align-items: center;
  padding-top: 160px; 
  transition: all 0.3s;
}
  
    ul li {
      margin: 0px 0;
      
    }
  
    ul li a {
      font-size: 20px;
    }
  
    #check:checked ~ ul {
      right: 0;
      
    }
    .mainPhoto {
      flex-direction: column; 
      align-items: center;   
    }

    .myPhoto {
      content: url("images/photo2.jpg"); 
      max-width: 100%; 
    }
    
  
    
  }
 
  .logo{
    width: 170px;
    height: auto;
  }.myPhoto {
    width: 100%;
    height: 100%;
    object-fit: cover; 
  }
  .decor {
    display: inline-block;  
    justify-content: center;
  }
  
  .decor img {
    width: 40%;  
    height: auto; 
    padding: 0 30%;
  }
h1{
  margin: 0;
  text-align: center;
  font-size: 30px;
  padding-top: 10px;
}
.sectionClass{
  width: 90%;
  background-color: aqua;
  margin: 0 5%;
  display:flex;
 
}
.photo_1{
  
  width: 500px;
}
.sectionClass ul{
  display: block;
}
.social-container {
  display: flex;              
  justify-content: center;    
  align-items: center;         
  height: 10vh;
          
}
.social {
  display: flex;             
  gap: 20px;                  
  padding: 10px 30px; 
              
}

.insta {
  width: 70px;
  height: 70px;
  transition: filter 0.3s ease-out;
  
}
.facebook {
  width: 65px;
  height: 65px;
  transition: filter 0.3s ease-out;
}
.insta:hover {
  filter: brightness(1.3); 
  transform: scale(1.1);
}
.facebook:hover {
  filter: brightness(1.3); 
  transform: scale(1.1);
}
@media (max-width: 768px) {
  h1{
    font-size: 20px;
  }
  .insta{
    width: 40px;
    height: 40px;
  }
  .facebook{
    width: 40px;
    height: 40px;
  }
  
  
}

.privacy-back {
  width: 100vw; 
  height: 100vh; 
  display: flex; 
  justify-content: center;
  align-items: center;
  
}

.privacyPhoto {
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
}