@import url("https://fonts.googleapis.com/css2?family=Georama:wght@400;500;700&display=swap");

body {
  font-family: "Georama", sans-serif;
  background: #259aca;
  color: rgb(59, 57, 57);
}

main {
  background: #fee781;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 540px;
  margin: auto;
  text-align: center;
  border-radius: 10px;
  min-height: 450px;
}

#birthday-input {
  width: 150px;
  border-radius: 5px;
  outline: none;
  margin-bottom: 20px;
  cursor: pointer;
}

#submit-btn {
  font-size: larger;
  width: 100px;
  margin-bottom: 20px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}

p,
#output {
  font-size: large;
  font-weight: 500;
}
