* {
  font-size: x-large;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #30343f;
  background-image: url(./assets/undraw_personal_finance_tqcd.svg);
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  background-color: #30343f;
  border: solid 1px;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title {
  margin-bottom: 10px;
  font-size: 38px;
  color: #ffffff;
}
p {
  margin-bottom: 10px;
  color: #ffffff;
}

select {
  margin: 10px;
}
option {
  color: black;
}

button {
  margin-top: 10px;
}
