video {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

video::-webkit-media-controls-mute-button, video::-webkit-media-controls-volume-slider {
    display: none !important
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.video-container video {
    width: 250px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#contact {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;  /* Center all content inside */
    justify-content: center;
    text-align: center;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

  #contact input[type="email, message"] {
      font-family: 'Ubuntu', sans-serif;
  }
  
  #contact form {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Center the form fields horizontally */
    gap: 10px;
    width: 100%;
    max-width: 600px;  /* Optional: limits form width */
  }
  
  #contact label {
    font-weight: bold;
    margin-bottom: 5px;  /* Adds space below labels */
  }
  
  #contact input, #contact textarea {
    width: 100%;  /* Ensures input fields take full width of their container */
    max-width: 400px;  /* Limits input width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #contact button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    max-width: 400px;  /* Limits button width */
    margin-top: 10px;  /* Space between button and form */
  }
  
  #contact button:hover {
    background-color: #555;
  }
  
  body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 20px;
  }

  .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .header-logo img {
    width: 100px;
  }