html,body {
  height: 100%;

}

body {
  color: #fff;
  margin: 0;
  font-family:Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
  font-size:14px;
  line-height:1.428571429;
}

a {
	font-weight: bold;
}

#slideshow {
  margin: 0 auto;
  position: relative;
  width: 1000px;
  height: 563px;
  padding: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#slideshow > div {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}

body {
        background-color: #000;
        color: white;
        margin: 0;
        padding: 0;
      }
	  
      .company-description {
        text-align: center;
        max-width: 800px;
        margin: 20px auto;
        padding: 0 20px;
        line-height: 1.6;
        color: #fff;
        font-size: 1.1em;
      }
      
	  
      .contact-button {
        display: block;
        width: 200px;
        margin: 40px auto;
        padding: 15px 30px;
        background-color: transparent;
        color: white;
        text-align: center;
        text-decoration: none;
        font-size: 1.1em;
        border: 2px solid white;
        border-radius: 5px;
        transition: all 0.3s ease;
      }

      .contact-button:hover {
        background-color: white;
        color: black;
        transform: translateY(-2px);
      }
      
      .logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
      }
      
      .video-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 20px auto;
        padding: 20px;
      }
      
      .video-container {
        position: relative;
        padding-top: 56.25%;
        width: 100%;
      }
      
      .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
      
      .copyright {
        text-align: center;
        margin: 20px 0;
      }
      
      @media (max-width: 768px) {
        .video-grid {
          grid-template-columns: 1fr;
        }
      }

