
* {
    margin: 0;
    padding: 0;
    font-family:'Times New Roman', Times, serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    list-style: none;
    text-decoration: none;
  }
  section {
    padding: 50px 10%;
  }
 body.active {
   background-color:  #1e1c2a;
   color: #fff;
  }
  #darkmode {
    font-size: 25px;
    cursor: pointer;
  }
  header {
    position: fixed;
    width: 100%;
    height: 15%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    padding: 18px 100px;
    box-shadow: 0 0.5rem 50rem rgba(0, 0, 0, 0.1);
    
  }
  .logo {
    align-items: center;
    height: 50%;
    width: 50%;
    
  }
  .navbar {
    display: flex;
  }
  .navbar a {
    font-size:25px;
    padding: 20px 20px;
    margin: 20px;
    color:black;
    font-weight:800;
    background:palegreen;
    border-radius: 30%;
    border-block-color: black;
    border:2px solid black;
  }
  .navbar a:hover {
    color:red;
  }
  
#myVideo {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  }
  .home {
    width: 100%;
    min-height: 80vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
  }
  
  .home-text h1 {
    font-size:80px;
    width: 200%;
    color:black;
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}
.home-text h2 {
    font-size:60px;
    margin: 1rem 0 1rem;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
  }
  .btn {
    display: inline-block;
    background:linear-gradient(315deg,#E7D045, #A04EF6);
    padding: 10px 20px;
    border-radius: 0.5rem;
    color: #fff;
    font-size:20px ;
    margin:20px;
  }
  .btn:hover {
    background: #ffa400;
  }
  #menu-icon {
    font-size: 2rem;
    cursor: pointer;
    display: none;
  }
  .about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:0.5rem;
    align-items:center;
    margin: 2px;
    padding: 2%;

   
   
  }
  .about-img img {
    max-width:70%;
    border-radius: 0.5rem;
    height: 50%;
    border:5px dotted black;
    
    
    
  }
 
  .about-text {
    background-color: #d9e4f5;
   background-image: linear-gradient(315deg, #d9e4f5 0%, #f5e3e6 74%);

    opacity:60%;
    font-family: 'Lora', serif;
    border: 5px dotted black;
    padding: 2%;
    justify-content: center;
  }
.about-text h2 {
    font-size:33px;
    width: 100%;
    color:black;
    margin:5px;
    

  }
  .about-text p{
    font-size:32px;
    margin: 1rem 0 1rem;
   color:black;
   justify-content: center;
   }
    .gallery{
      min-height: 100vh;
      background:#eee;
      padding: 80px;
      }
  .contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 1.5rem;
    font-size:25px;
    background-image: linear-gradient(315deg, #d9e4f5 0%, #f5e3e6 74%);
    opacity:60%;
    font-family: 'Lora', serif;
    border: 5px double black;
    padding:2%;
    justify-content: center;
    height:40%;
    
    
  }
  .contact-box h3 {
    margin-bottom: 1rem;
  }
  .social {
    display: flex;
    
  }
  .social i {
    font-size: 23px;
    padding: 1%;
    color:black;
    
  }
  .social i:hover {
    color:darkviolet;
  }
  .contact-box li a {
    color:black;
  }
  .contact-box li a:hover {
    color:darkviolet;
  }
  .address {
    display: flex;
    flex-direction: column;
    font-size: 25px;
    color: black;
  }
  .address i {
    
    color: black;
    font-size: 25px;
  }
  .address i:hover {
    color:darkviolet;
  }
  .address span {
    margin-left: 1rem;
  }
  .copyright {
    padding: 20px;
    text-align: center;
    font-size: 25px;
  }
  
 