body {
  margin: 0;
  background-color: #58b09c;
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.calendar-container {
  background-color: #fff;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.month-name {
  background-color: orangered;
  color: #fff;
  padding: 13px;
  margin-top: 0px;
  font-weight: bold;
  font-size: 30px;
}

.week-day {
  font-size: 20px;
  color: darkgray;
}

.week-date {
  font-size: 80px;
  margin: 0;
}

.year {
  font-size: 20px;
  color: darkgray;
  margin: 20px 0;
  font-weight: 500px;
}
