body {
  margin: 0;
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  font-family: cursive;
  background-color: slateblue;
}

.calendar-container {
  background-color: white;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden; /*让 month 不要遮盖圆角*/
}

.month-name {
  margin: 0;
  background-color: orangered;
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.day-name {
  font-size: 20px;
  font-weight: 300;
  color: darkgray;
}

.day-number {
  margin: 0;
  font-size: 80px;
  font-weight: bold;
}

.year {
  margin: 20px;
  font-size: 20px;
  color: darkgray;
  font-weight: 500;
}
