 html {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  #container {
    margin: 0;
    padding: 0;
    height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-family: Arial, sans-serif;
    color: #fff;
   
    
}

logo {
    width: 50px; /* Adjust size as needed */
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect */
a:hover .logo {
    transform: scale(1.1); /* Slightly enlarge the logo */
    filter: brightness(1.2); /* Light up effect */
}

/* Change SVG on hover */
a:hover .logo {
    content: url('hover4.png'); /* Replace with the path to your hover SVG */
}
  
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background-color: #fff; /* Light background for contrast */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .box {
    border-radius: 10%;
 

    width: 400px;
    height: 400px;
    margin: 10px;
    overflow: hidden; /* Ensures images don't overflow */
    position: relative; /* Allows absolute positioning of images */
  }

  .box:hover{
    background: linear-gradient(rgba(70, 72, 73, 0.7), rgba(255, 255, 255, 0.5));
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);

    cursor: pointer;
  }
  .box img {
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    mix-blend-mode: multiply;
    opacity: 95%;
    width: 385px;
    height: 400px;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the image */
  }
  
  #divit{
    display: flex;
}
#divittwo{
    display: none;
}
  @media only screen and (max-width: 800px) {
    .container{
        width: 100vw;
    }
    #divit{
        display: none;
    }
    #divittwo{
        display: block;
    }
  
    .box1 {
        border-radius: 0;
      width: 100%;
      height: 100px;
    
     background: linear-gradient(rgba(100, 170, 213, 0.7), rgba(255, 255, 255, 0.5));
        border: 1px solid black;
        overflow: hidden; /* Ensures images don't overflow */
        position: relative; /* Allows absolute positioning of images */
    }
    .box1 img {
  
        mix-blend-mode: multiply;
        opacity:95%;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center the image */
        
      }
      .box1:hover{
        background: linear-gradient(rgba(70, 72, 73, 0.7), rgba(255, 255, 255, 0.5));
       
        cursor: pointer;
      }
   
   
  }
  