/* General body styles */
body {
  background-color: black;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
}

/* Background video styles */
.background {
  height: 100%;
  left: 0;
  object-fit: cover;
  opacity: 0.75;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1; /* Ensure video stays behind content */
}

.background-placeholder,
.background-video {
  height: 100%;
  left: 0;
  object-fit: cover;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .background-video {
    display: none; /* Hide background video on small screens */
  }
}

/* Page content layout */
.page {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  position: relative;
  text-align: center;
  z-index: 1; /* Keep content above background */
}

.page__title {
  margin-bottom: 2rem;
}

.page__title-headline {
  background-color: black;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0.25rem;
  padding: 0.5rem;
}

.page__title-subheadline {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

/* Page content items */
.page__content {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.page__content-icon {
  margin-right: 5px;
}

.page__content-item {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.page__content-link {
  display: block;
}

/* Anchor tag styles */
a {
  color: rgba(255, 255, 255, 0.85);
}

/* Image styles */
img {
  display: flex;
  opacity: 0.85;
}
