* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  min-height: 100vh;
  width: 90%;
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5vh 0;
}
.container form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
}
.container form input, .container form select {
  padding: 6px 8px;
  border-radius: 12px;
  margin-bottom: 15px;
  outline: none;
  border: none;
  background-color: rgb(180, 226, 210);
}
.container form input[type=submit], .container form select[type=submit] {
  cursor: pointer;
}
.container table {
  width: 100%;
}
.container h2 {
  margin: 50px 0;
}
.container table {
  border-collapse: collapse;
}
.container table thead tr {
  background-color: rgb(225, 193, 150);
}
.container table thead tr th {
  text-transform: uppercase;
  padding: 10px;
}
.container table tr td {
  padding: 10px;
}
.container table .ne {
  background-color: red;
}
.container table .ne td {
  color: white;
}
.container table .ne td:last-child {
  cursor: pointer;
}

@media (max-width: 600px) {
  .container table {
    overflow-x: scroll;
  }
  .container table thead tr th {
    font-size: 10px !important;
    padding: 10px 3px;
  }
  .container table tr td {
    font-size: 10px;
    padding: 10px 3px;
  }
}/*# sourceMappingURL=style.css.map */