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

body {
  background-color: #1E2A38;
  color: white;
}

.container {
  max-width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.bars_container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.bar {
  width: 10px;
  background-color: #9AD0EC;
  margin: 0 2px;
  border-radius: 2px;
  border: 1px solid black;
}

.buttons_container > button,
select {
  width: 180px;
  height: 35px;
  background-color: #FFD93D;
  border: none;
  border-radius: 5px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  margin: 5px;
}

button:hover {
  background-color: #FFB347;
}
