*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    background-image: url("../img/cabin-interior.avif");
    background-repeat: no-repeat;
    background-size: cover;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
  }
  
  .navbar ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    transition: transform 0.3s ease;
  }
  
#interactive{
    background-color: white;
    color: black;
    width: 200px;
    height: 200px;
    border-radius: 30px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 45%;
    top: 30%;
    padding: 10px;
}

.navbar li a:hover {
  transform: scale(1.2);
}

.navbar li a img {
  width: 24px; 
  height: 24px;
  transition: transform 0.3s ease; 
}

.navbar li a:hover img {
  transform: scale(1.2);
}