body {
  margin: 0;
  padding: 0;
  font-family: "Rubik", monospace;
  background-color: white;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  height: calc(100 * var(--vh));
  min-height: fill-available;
  min-height: -webkit-fill-available;
}

html {
  height: calc(100 * var(--vh));
  height: fill-available;
  height: -webkit-fill-available;
}

content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 50px;
}

.subhead {
  font-size: 12px;
  text-transform: lowercase;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* Ensure it's behind other content */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* 20% black overlay */
}

#logo-top {
  font-size: 2rem;
  font-weight: 400;
  align-self: center;
  z-index: 1; /* Ensure it's above the video */
}

#icon {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0;
  height: 30px;
}

#email {
  text-decoration: none;
  color: #fff;
  margin-top: 0;

  p {
    font-size: 12px;
  }
}

a {
  text-decoration: none;
  z-index: 2; /* Ensure it's above the video */
}

a:hover {
  text-decoration: underline;
  color: #fff;
}
