@import "./global.css";

html,
body {
  height: 100%;
}

.main {
  width: 100%;
  height: 100%;
  position: relative;
}

.main-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.main-background:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.7);
}

.main-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
}

h1 {
  font-size: 60px;
  text-align: center;
  color: #96694c;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 40px;
    margin-bottom: 0.5rem;
  }

  h2 {
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
}

h2 {
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 0;
}
