
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: black;
  color: #242424;
  height: 100%; /* Ensuring the body takes at least the full height of the viewport */
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Full viewport height */
  width: 100%;
}

.logo {
  width: 50%;
  margin: 0 auto;
  padding: 4vh 0 30px;
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

#contact {
  margin: 0 0 10px 1%;
  font-size: 1em; /* Adjusted for readability */
}

#contact img {
  width: 13px;
}

a {
  color: #999999;
}

a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.video-container {
  width: 100%;
  padding: 0 1% 30px;
}

.video-holder {
  width: 100%;
  height: 230px;
  margin: 0 0 20px;
}

.video-holder iframe {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 520px) {
  .video-container {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .video-holder {
    width: 48%;
    height: 315px;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  #contact {
    font-size: 1.9em; /* Larger font for desktop */
  }
}

@media screen and (min-width: 1024px) {
  .logo {
    padding-top: 18vh;
  }

  .video-container {
    padding: 0 0 70px;
  }

  .video-holder {
    width: 25%;
  }
}
