/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body {
  font-family: Arial, Helvetica, sans-serif
}

#dob,
#sex {
  display: flex;
}

input,
button,
select,
.sex {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  font-size: larger;
  text-align: center;
  margin: 0.3em;
  border-radius: 0.4em;
  box-shadow: none;
  border-style: solid;
  border-color: rgb(224, 224, 224);
}

#dobHeader {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  margin: 0.3em;
  font-size: larger;
}

.form {
  display: flex;
  flex-direction: column;
}

#landing {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95vh;
  flex-direction: column;
}

#main {
  display: none;
}

#content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#time {
  position: sticky;
  top: 0;
  overflow: hidden;
  text-align: center;
  font-size: 4em;
  padding-top: 2em;
  background-color: white;
  padding-bottom: 1.5em;
}

.page {
  padding: 25vh 0;
  font-size: 2em;
  text-align: center;
}

.legacyForm {
  font-size: 1.3em;
}

.sex {
  width: 100%;
  text-align: center;
}

a {
  text-decoration: none;
}

.hoverable:hover {
  cursor: pointer;
}

.sex:hover {
  background-color: rgb(255, 215, 215);
}

.selected {
  background-color: rgb(255, 183, 183);
}