/* home.css */

.home-logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}

.home-logo svg {
  width: 100%;
}

.home-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.home-cover:after {
  background-color: rgba(0, 0, 0, 0.375);
  bottom: 0;
  content: "";
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1;
}

.home-cover video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.home-cover img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.info {
  bottom: 20px;
  color: #fff;
  padding: var(--wrapper-inline);
  position: absolute;
  z-index: 10;
}

.info > h1,
.info > h2 {
  font-family: var(--font-family-serif);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 40px;
}

@media screen and (min-width: 800px) {
  .info > h1,
  .info > h2 {
    font-size: 39px;
  }
}

.info p {
  font-family: var(--font-family-sans);
  font-size: var(--text-size-sm);
  letter-spacing: 0.05em;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
}

