@font-face {
  font-family: "Monsterrat";
  src: url("../fonts/Monsterrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "DMMono";
  src: url("../fonts/DMMono/DMMono-Medium.ttf") format("truetype");
  font-weight: 600;
  font-style: medium;
}

body {
  margin: 0;
  overflow: hidden;
}

.main-container {
  position: relative;
  text-align: center;
  max-width: 33vw;
  margin: 0 auto;
  height: 100vh;
  max-height: 100vh;
}

#landing-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

#logo {
  position: absolute;
  top: 1vh;
  left: 10vw;
  width: 12rem;
  height: 12rem;
  object-fit: contain;
}

.inner-container {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);

  width: 100%;
}

.timer-container {
  min-height: 7rem;
  margin-bottom: 17.5rem;
}

.messages-container {
  position: absolute;
  bottom: 25rem;
  width: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
#message-one,
#message-two {
  position: absolute;
  font-family: "Monsterrat";
  letter-spacing: 0.05rem;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: white 0px 0px 25px;

  transition: opacity 1.25s ease-out;
}

#timer {
  font-family: "DMMono";
  font-size: 4rem;
  color: #fff;
}

@media only screen and (max-width: 800px) {
  .main-container {
    max-width: 50vw;
  }

  #timer {
    font-size: 3.5rem;
  }

  .timer-container {
    margin-bottom: 2.5rem;
  }

  #logo{
    top: 1%;
    left: 50%;
    transform: translate(-50%, -1%);
  }
}

@media only screen and (max-width: 600px) {
  .main-container {
    max-width: 90vw;
  }

  .timer-container {
    margin-bottom: 2rem;
  }
  #timer {
    font-size: 2rem;
  }

  .messages-container{
    top: 50%;
  }

  #message-one,
  #message-two {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  #logo{
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 8rem;
    height: 8rem;
  }
}

@media only screen and (min-height: 1200px) {
  .timer-container {
    margin-bottom: 7.5rem;
  }
}

@media only screen and (max-height: 600px) and (orientation: landscape) {
  #timer {
    font-size: 2rem;
  }
  .inner-container {
    top: 5%;
    transform: translate(-50%, -5%);

    width: 100%;
  }

  .messages-container{
      bottom: 10rem;
  }

  .main-container {
    max-width: 75vw;
  }

  #logo{
    left: 1.5vw;
    top: 0;
    width: 8rem;
    height: 8rem;
    transform: unset;
  }
}
