body {
  background-image: url(../images/background.jpg);
  background-position: center;
  background-size: cover;
  margin: 0;
}

h1 {
  text-align: center;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: white;
}

p {
  color: white;
  text-align: center;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#box {
  margin: auto;
  width: 60vw;
  border: 3px solid red;
  padding: 10px;
  background-color: black;
}

/* Media Queries */
@media screen and (max-width: 1000px) {
  #box {
    width: 100vw;
    margin: 0%;
  }

  h1 {
    font-size: 6rem;
  }

  p, select, input {
    font-size: 3rem;
  }

  textarea {
    font-size: 2rem;
  }
}
