@import url("https://fonts.googleapis.com/css2?family=Anton&family=Bangers&family=Montserrat:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #fa5e36;
  width: 100vw;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main_container {
  width: 80vw;
  min-height: 100vh;
  background-color: #fa5e36;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

h1 {
  font-family: 'Bangers', cursive;
  letter-spacing: 5px;
  font-size: 4rem;
  margin-bottom: 3vh;
}

h1:hover {
  cursor: pointer;
  color: black;
}

h1 span {
  font-family: 'Bangers', cursive;
  background-color: white;
  color: #f03c3c;
  padding: 0 2rem;
  border-radius: 10px;
}

h1 span:hover {
  cursor: pointer;
  background-color: black;
  color: white;
}

.input_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

label {
  font-size: 1.7rem;
  margin-top: 2vh;
}

label:hover {
  cursor: pointer;
}

input {
  height: 4vh;
  width: 30vw;
  border-radius: .5rem;
  margin-bottom: 2rem 0;
  font-size: 1.3rem;
  text-align: center;
}

button {
  width: 10vw;
  height: 4vh;
  margin: 2vh 0;
  background-color: white;
  font-family: 'Anton', sans-serif;
  color: #f03c3c;
  letter-spacing: 2px;
  font-size: 1.3rem;
  border-radius: 10px;
}

button:hover {
  color: white;
  background-color: #f03c3c;
}

#table {
  margin-top: 5vh;
  width: 90vw;
}

@media all and (max-width: 850px) {
  label {
    font-size: 1.3rem;
  }
  input {
    width: 50vw;
  }
}

@media all and (max-width: 500px) {
  h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  label {
    font-size: 1rem;
  }
  input {
    width: 70vw;
  }
  button {
    width: 30vw;
  }
}
/*# sourceMappingURL=style.css.map */