body {
 width: 100%;
 height: 100vh; /* Fallback for browsers that do not support Custom Properties */
 height: calc(var(--vh, 1vh) * 100);
 /*min-height:600px; /*just for example*/*/
 display: flex;
 flex-direction: column; /* NEW */
 overflow: hidden !important;
 flex-wrap: wrap;
 margin: 0;
}

.container {
  height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  display: flex;
  flex-direction: column; /* NEW */
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden !important;
  margin-left: 0;
  margin-right: 0;
}

.standard {
  height: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.soon {
  width: 17%;
}

.logo {
  width: 34%;
  margin-top: 0%;
  padding-left: 6px;
}

.email {
  width: 3%;
  margin-top: 6%;
}

.email img {
  width: 100%;
}

.main-content {
  background-color: #122454;
  height: 90vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 90);
  display: flex;
  flex-direction: column; /* NEW */
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden !important;
  margin-left: 0;
  margin-right: 0;
}

.footer {
  background-color: #d18901;
  z-index: 50 !important;
  height: 9vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 9);
  border-top: calc(var(--vh, 1vh) * 1) solid #fad000;
}

.footer-text {
  color: white;
  text-align: center;
  font-family: 'Abel', sans-serif;
  font-weight: 300;
  position: relative;
  top: 27%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.2em;
}

.footer-text a {
  color: white;
  text-decoration: none;
}

@media only screen and (max-width: 970px) {

  .soon {
    width: 28.5%;
  }

  .logo {
    width: 48%;
  }

  .email {
    width: 5.25%;
    margin-top: 12%;
  }
}

@media only screen and (max-width: 570px) {

  .soon {
    width: 57%;
  }

  .logo {
    width: 90%;
    
    padding-left: 0;
  }

  .email {
    width: 10.5%;
    margin-top: 18%;
  }

  .footer-text {
    font-size: 1em;
    top: 30%;
  }
}
