* {
  font-family: "Roboto Slab", serif;
  color: #1f1f1f;
}

body {
  background: #f1f1f1;
  color: #1f1f1f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow-y: scroll;
}

.title {
  display: flex;
  align-content: center;
  justify-content: center;
  margin-top: 2rem;
}
.title h1 {
  margin: 0;
  font-size: 5rem;
}

.caption {
  display: flex;
  align-content: center;
  justify-content: center;
  text-align: center;
  margin: 0 25rem;
}
.caption h4 {
  font-family: "Roboto", sans-serif;
}

.calendar-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 30rem;
  transition: all 0.5s ease;
}
.calendar-row .calendar-block {
  content: "";
  height: 1rem;
  width: 1rem;
  box-sizing: border-box;
  border-style: solid;
  border-color: #000000;
  border-radius: 4px;
  margin: 0 0.1rem;
  margin-top: 0.1rem;
}
.calendar-row .calendar-block-filled {
  content: "";
  height: 1rem;
  width: 1rem;
  box-sizing: border-box;
  border-style: solid;
  border-color: #000000;
  border-radius: 4px;
  margin: 0 0.1rem;
  margin-top: 0.1rem;
  background-color: #1d1d1d;
}

.age {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.age div {
  display: flex;
  flex-shrink: inherit;
  align-content: center;
  justify-content: center;
  margin-top: 1rem;
}
.age div input {
  width: 30rem;
  height: 3rem;
  border: none;
  font-size: 1.8rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  border-radius: 10px;
  background: #f1f1f1;
  box-shadow: inset 5px 5px 10px #dedede, inset -5px -5px 10px #ffffff;
}
.age .button {
  margin: 1rem;
  padding: 0.5rem 1rem;
  height: 3rem;
  width: 25vw;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
  background: #f1f1f1;
  box-shadow: 5px 5px 10px #dedede, -5px -5px 10px #ffffff;
}
.age .button:hover {
  border-radius: 10px;
  background: #f1f1f1;
  cursor: pointer;
  box-shadow: inset 5px 5px 10px #eaeaea, inset -5px -5px 10px #f8f8f8;
}

.copyright {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
}

.clear {
  display: none;
}

@media only screen and (max-width: 600px) {
  .calendar-row {
    margin: 1rem;
  }
  .title h1 {
    margin: 1rem;
  }
  .caption {
    margin: 0 2rem;
  }
  .caption h4 {
    text-align: justify;
    margin: 0 1rem;
  }
  .age div input {
    width: 80vw;
  }
  .age div .button {
    width: 80vw;
  }
}/*# sourceMappingURL=style.css.map */