@import url("https://fonts.googleapis.com/css?family=Comfortaa:400,900|Montserrat|Roboto");
* {
  padding: 0;
  margin: 0;
}

#vantajs-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container h2 {
  font-size: 4em;
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  text-shadow: 1px 1px #D37E86;
}
.container p {
  font-size: 1 em;
  font-family: "Comfortaa", sans-serif;
  color: #FFFFFF;
  text-shadow: 1px 1px #070707;
  margin-bottom: 0.5rem;
}
.container select {
  width: 200px;
}

footer {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  right: 5px;
  text-align: center;
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
  padding: 0.5rem;
}
footer p {
  border: none;
  padding: 0;
}
footer p strong {
  font-size: 2em;
  text-decoration: none;
}
footer p strong:hover {
  color: #cd6b74;
  transition: all 0.4s ease-in-out;
  font-weight: 1500;
  font-size: 2em;
  cursor: pointer;
}
footer a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
footer a:hover {
  color: #D37E86;
  font-weight: 900;
  font-size: 1.1em;
}