
body, ul {
    margin: 0;
    padding: 0;
    background-color: rgba(0, 255, 255, 0);
  }
  
  header {
    background-color: #ffffff;
    padding: 20px;
    display: flex; 
    align-items: center; 
    background-image: url(/backmount.jpg) ;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .logo {
    padding: 20px;
  }
  
  .logo img {
    height: 50px; 
  }
  
  nav {
    flex-grow: 1;
  }
  
  nav ul {
    list-style-type: none;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
  }
  
  nav ul li {
    margin-right: 10px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #000000;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bolder;
    font-size: x-large;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transition: color 0.3s;
    
  }
  
nav ul li a:hover {
    text-decoration: underline;
    color:rgb(255, 255, 255)
    
}

nav ul li img {
    width: 80px;
    height: 80px;
    vertical-align: middle;
  }

.video-container {
    position: relative;
    
  
  }
  
  .video-container iframe {
    position: absolute;
    
    
  }

  .carousel {
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow:hidden;
    height: 500px; 
  }

  .carousel-container {
    position: relative; 
    width: 100%; 
    height: 100%; 
    overflow: hidden;
  }
  
  .carousel img {
    width: 100%;
    height: 100%;
    object-fit:cover
    position: absolute;
    top: 0;
    left: 0;
    
    opacity: 0;
        
  }

  .carousel img:nth-child(1) {
    animation: carouselAnimation 12s infinite;
  }
  
  .carousel img:nth-child(2) {
    animation: carouselAnimation 12s infinite; 
    animation-delay: 4s;
  }
  
  .carousel img:nth-child(3) {
    animation: carouselAnimation 12s infinite;
    animation-delay: 8s; 
  }

  .carousel img:nth-child(4) {
    animation: carouselAnimation 12s infinite;
    animation-delay: 12s; 
  }
  
  @keyframes carouselAnimation {
    0% {
      opacity: 0; 
    }
    16.66% {
      opacity: 1; 
    }
    33.33% {
      opacity: 1; 
    }
    49.99% {
      opacity: 0; 
    }
    100% {
      opacity: 0; 
    }
}

.image-sections {
    display:block;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    
  }
  
  .image-section img {
    width: 75%;
    height: 75%;
    
  }

  .container {
    max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
  
  }

  h1 {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: underline; 
    color: #ffffff;
    
  }
  
  .aboutus {
    margin-bottom: 20px;
    text-align: justify;
    font-family: 'Courier New', Courier, monospace;
    font-size: large;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
  }

  body.about {
    background-image: url("/rainlook-2.jpg");
    background-size: cover;
    background-position: center;
  }

.welcome {
    color: blue;
    text-align: center;
    font-size: x-large;
    text-shadow: 0;
  }

  .order-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .submit-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .submit-button:hover {
    background-color: #0056b3;
  }

  #youtube-video-container {
    width: 100%;
    height: 400px;
    
  }
  
  #youtube-video {
    width: 100%;
    height: 100%;
    border: none;
    
  }
  