* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Vibur";
}

body {
  background-color: pink;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  width: 100%;
  height: 200px;
  gap: 10px;
}

.subtitle {
  font-size: 40px;
}

.date {
  font-size: 18px;
  margin-top: 30px;
}

.image-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  width: 100%;
  z-index: 1;
}

.image-description-container {
  width: 80%;
  margin-top: 15px;
}

.image-description {
  font-size: 18px;
  text-align: center;
}

.first {
  height: 300px;
}

.buttons {
  position: absolute;
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin-top: 20px;
  bottom: 30px;
}

.ph {
  font-size: 40px;
  cursor: pointer;
}

.ph.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.to-be-continued {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #000;
  display: none;
  text-align: center;
}

.image.is-exiting { animation: fadeOut 1600ms ease forwards; }
.image.is-entering { animation: fadeIn 1600ms ease forwards; }

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.99); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.985); }
  to   { opacity: 1; transform: scale(1); }
}

.date.is-entering, .image-description.is-entering { animation: fadeIn 1600ms ease forwards; }
.date.is-exiting, .image-description.is-exiting   { animation: fadeOut 1600ms ease forwards; }

.daily-start {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40%;
  background: pink;
  z-index: 9999;
}

.daily-start-content {
  font-size: 40px;
  text-align: center;
}

#open-site {
  height: 60px;
  width: 150px;
  margin-top: 50px;
  padding: 12px 30px;
  font-size: 24px;
  border: none;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: black;
  transition: background 0.3s;
}

#open-site:hover {
  background: #f0f0f0;
}

.flower-images {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 50px;
  width: 80%;
}

.flower {
  height: 110px;
}

.container {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.container.active {
  opacity: 1;
}