*,
::after,
::before {
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  color: #212529;
  font-weight: 400;
  font-size: 1rem;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  line-height: 1.5;
  background-color: #fff;
  background-color: #616161;
}

.calendar {
  min-width: 10rem;
  line-height: 1;
  text-align: center;
  border-radius: 0.5rem;
}

.calendar-header {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.3;
}

.calendar-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calendar-month {
  color: #cecece;
  font-size: 1.25rem;
  text-transform: capitalize;
}

.calendar-weekday {
  color: #cecece;
  font-size: 1.25rem;
  text-transform: capitalize;
}

.calendar-day {
  font-weight: bold;
  color: #cecece;
  font-size: 3rem;
}

.calendar-year {
  color: #cecece;
  font-size: 2rem;
}
