body {
  margin: 8px;
}

input {
  font-size: 1rem;
}

h1 {
  color: blue;
}

#settings-btn {
  font-size: 18px;
  position: absolute;
  top: 8px;
  right: 8px;
}

#settings-modal {
  display: none;
  box-sizing: border-box;
  padding: 24px 12px;
  position: absolute;
  background-color: white;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200px;
  border: 1px solid #333;
}

#modal-close-btn {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  padding: 4px;
  width: 32px;
  height: 32px;
  background-color: white;
}

.field {
  margin: 12px 0;
  display: flex;
  justify-content: center;
}

.amount {
  flex-direction: row;
  align-items: center;
  font-size: 32px;
}

#amount-field {
  padding: 0 6px;
  height: 48px;
  width: 35%;
  font-size: 32px;
  border: 0;
  outline: 0;
  text-align: center;
}

#amount-field:focus {
  outline: none;
}

.form-fields {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.description {
  width: 90%;
}

#description-field {
  height: 24px;
  width: 100%;
  padding: 4px;
}

#submit-btn {
  width: 80%;
  height: 48px;
}

#status-message {
  margin-top: 8px;
}

.top-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}