* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.video-bg iframe {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(249, 241, 224, 0.85);
  padding: 40px 40px 20px;
  border-radius: 10px;
  text-align: center;
  color: #438894;
  max-width: 90%;
  min-width: 420px;
}

.logo {
  height: 200px;
  font-size: 3rem;
  margin-bottom: 10px;
  text-indent: -9999px;
  background: url("bookinazores-logo.png") center center no-repeat;
  background-size: contain;
}

.subtitle {
  font-size: 1.23rem;
  margin-bottom: 20px;
}

.contact {
  font-size: 1rem;
  line-height: 1.6;
}

h7 {
    font-size: 0.77rem;
    margin-bottom: -30px;
}
a {
    color: #438894;
    text-decoration: none;
}
a:hover, a:active {
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {
    .overlay {
        padding: 40px 30px 20px;
    }
    .logo {
        height: 140px;
    }
}
