
body {
  margin: 0;
}

.square {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  border-radius: 50%;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top {
  font-family: "Oswald", sans-serif;
  padding: 0 14%;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 0.9rem; letter-spacing: 1.5px; }
  .tagline { font-size: 0.8rem; }
  h3 { font-size: 0.85rem; }
}

h1 {
  color: white;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 6px 0;
}

h2 {
  color: white;
  text-align: center;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

.tagline {
  font-family: "Lato", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
  margin: 0 0 22px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

h3 {
  text-align: center;
  font-weight: 400;
  font-size: 0.95rem;
  margin: 6px 0;
}
video {
  height: 100vh;
  position: fixed;
}


a:link {
  color: orange;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

.fullscreen-video-container {
  position: relative;
}
.fullscreen-video-container {
  height: 100vh; 
  width: 100vw;
}
.fullscreen-video-container {
  overflow: hidden;
}
.fullscreen-video-container video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* iOS specific video fixes */
.ios .fullscreen-video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
}

.fullscreen-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
