@font-face {
  font-family: 'Actor';
  src: url('/fonts/Actor-Regular.ttf');
}

@font-face {
  font-family: 'Oswald';
  src: url('/fonts/Oswald-VariableFont_wght.ttf');
}

* {
  font-family: Oswald;
}


body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 60%;
}

h1 {
  font-size: 32px;
  font-weight: bold;
  line-height: 70px;
  text-transform: uppercase;
  color: #fc4719;
}

.buttons .btn {
  background-color: #000;
  color: #fc4719;
  text-transform: uppercase;
  font-size: 18px;
}

/*.newsletter img {
  width: 27px;
  margin-right: 5px;
  margin-top: -5px;
}*/

#countdown {
  display: flex;
  justify-content: center;
  color: white;
  margin-bottom: 35px;
  text-align: center;
}

#countdown div:not(.divider) {
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 20px 20px;
  min-width: 60px;
}

#countdown .divider {
  background: #99999999;
  width: 1px;
  margin: 25px 0;
  position: relative;
  left: -1px;
  margin-right: -1px;
}

#countdown div span {
  font-size: 30px;
  font-weight: 300;
}

#countdown div span.date-label {
  font-size: 12px;
  color: #999;
}

#countdown #now {
  display: none;
}

.buttons {
  margin-bottom: 20px;
}

a.back {
  color: #fc4719;
  text-decoration: underline;
  font-size: 18px;
  text-transform: uppercase;
}

@media(min-width: 768px) {
  .content {
    padding-top: 40%;
  }

  h1 {
    font-size: 60px;
    line-height: 100px;
  }

  #countdown div:not(.divider) {
    padding: 10px 20px 20px;
    min-width: 80px;
  }

  #countdown div span {
    font-size: 40px;
  }
}

@media(min-width: 992px) {
  .content {
    padding-top: 20%;
  }

  h1 {
    font-size: 85px;
    line-height: 136px;
  }
}