.window {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2em;

  border-width: 1;
  border-style: solid;
  border-color: RGB(22, 25, 37, 0.5);
  border-radius: 2.5em;
  padding: 2em;
  background-color: RGB(22, 25, 37, .1);
}

.window-title {
  font-size: 3em;
  font-weight: 600;
}

.date {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 5em;
  width: 30em;
  border-width: 1;
  border-style: solid;
  border-color: RGB(22, 25, 37, 0.5);
  border-radius: 2.5em;
  margin: 1em;
  background-color: var(--light-neutral);
}

.date-text {
  color: var(--dark-neutral);
  margin: 1em;
  font-size: 3em;
  font-weight: 700;
}

.dash {
  margin: 0;
  font-size: 2em;
  font-weight: 500;
}

.leap-status-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leap-year-title {
  font-size: 2em;
  font-weight: 600;
}

.leap-year-status {
  font-size: 1.5em;
}

