* {
  box-sizing: border-box;
}

html {
  background-color: #7193AF;
}


html, body {
  margin: 0;
  padding: 0;
  font-family: 'Michroma', sans-serif;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  
}

.video-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  background-color: #7193AF;
}



.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 60, 110, 0.5);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  min-height: 100dvh;
  color: #fff;
}

.content img {
  max-width: 160px;
  margin-bottom: 20px;
}

.content h1 {
  font-size: 2.3em;
  margin: 10px 0;
}

.content p {
  font-size: 1.15em;
  margin: 20px 0 30px;
  max-width: 500px;
}

.button {
  background-color: #00b7ff;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 1em;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #0077aa;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .content {
    padding: 20px 10px;
  }
  .content h1 {
    font-size: 1.8em;
  }
  .content p {
    font-size: 1em;
  }
  .button {
    font-size: 0.95em;
    padding: 12px 28px;
  }
}

@media screen and (orientation: landscape) {
  html, body {
    height: 100vh;
    overflow: auto;
  }
  .video-bg {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
  .content {
    min-height: 100vh;
  }
}
