* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
#mainPage {
  height: 100vh;
  width: 100%;
  text-align: center;
  font-size: 2em;
  color: white;
  font-weight: bold;
  background-image: url(images/nature.jpg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
#mainPage h1 {
  padding-top: 2rem;
}
#container {
  margin-top: 2rem;
}
#container input {
  height: 1.9rem;
  color: #363062;
  font-weight: bold;
  width: 14rem;
}
#output {
  font-size: 1em;
  width: 50%;
  padding-top: 2rem;
  margin: auto;
  color: white;
  text-align: left;
}

button {
  text-align: center;
  height: 1.5rem;
  background: #363062;
  font-weight: bold;
  color: white;
  border-radius: 10px;
  width: 7%;
}
button:hover {
  background: white;
  color: #363062;
  box-shadow: 10px 10px 20px black;
}
@media (max-width: 1000px) {
  button {
    width: 20%;
  }
  h6 {
    font-size: 0.5em;
  }
}
@media (max-width: 700px) {
  button {
    width: 30%;
  }
  h1 {
    font-size: 1.2em;
  }
  #output {
    text-align: left;
    font-size: 0.5em;
  }
  h6 {
    font-size: 0.5em;
  }
}
