@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,200&family=Russo+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bangers&family=Quicksand:wght@500&family=Roboto+Slab:wght@600&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Slab', serif;
}

body {
  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;
  padding: 3vh 0;
  letter-spacing: 3px;
  color: #34fdf3;
}

.container {
  width: 100vw;
  min-height: 100vh;
  background-color: #34fdf3;
  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;
}

form input {
  margin: 1vh 0;
  width: 20vw;
  height: 5vh;
  border: 0;
}

form input:focus {
  border: 0;
  padding-bottom: 3px;
}

button {
  width: 8vw;
  height: 5vh;
  margin-bottom: 02vh;
  color: #34fdf3;
  background-color: white;
  font-weight: bold;
}

button:hover {
  color: white;
  background-color: #34fdf3;
}

ul {
  list-style: none;
}

li {
  width: 60vw;
  height: 7vh;
  background-color: white;
  border-bottom: 1px solid grey;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: bold;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1vw;
}

li span:nth-child(1) {
  font-family: 'Roboto Slab', serif;
}

li span:nth-child(2) {
  font-weight: normal;
}

li span:nth-child(3) {
  font-family: 'Quicksand', sans-serif;
}

li div {
  background-color: #34fdf3;
  padding: 5px;
  color: white;
  font-size: 18px;
}

li div:hover {
  cursor: pointer;
}

.message h2 {
  color: red;
}
/*# sourceMappingURL=style.css.map */