body {
  margin: 0px;
  color: white;
  background-color: #121212;
}

header {
  background-color: #2e2759;
  width: 100%;
  padding: 0.4em;
  border-bottom: 1px solid white;
}

header h2 {
 padding-left: 0.3em;
}

.index-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  height: 70vh;
}

.form {
  display: flex;
  flex-direction: column;
  padding: 1em;
}

.form button {
  width: auto;
  border: 3px solid white;
  border-radius: 10px;
  text-align: center;
}

.selectfield {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}

.selectfield select {
  width: 100%;
  padding: 0.5em;
  border: 3px solid white;
  border-radius: 10px;
}

.selectfield input {
  width: auto;
  padding: 0.5em;
  border: 2px solid white;
  border-radius: 10px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

table {
  margin-top: 3em;
  width: 30rem;
  border-collapse: collapse;
}

tr {
  height: auto;
  max-height: 4em;
}

th {
  background-color: #3e63ba;
  border-bottom: 1px solid white;
  padding-inline: 0.5em;
  text-align: center;
  font-size: 1.3em;
  height: auto;
  max-height: 4em;
}

td {
  background-color: #264040;
}
