body {
  margin: 0;
  padding: 0;
  background-color: #fdfdf7;
  font-family: 'Cinzel', serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.clock-container {
  width: 200px;
  height: 200px;
  position: relative;
  margin-bottom: 40px;
}

.clock-face {
  width: 100%;
  height: 100%;
  border: 2px dashed #333;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  position: relative;
}


.hand {
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform-origin: 0% 50%;
  transform: rotate(0deg);
}

.hour-hand {
  animation: spin-hour 60s linear infinite;
}

.min-hand {
  animation: spin-min 10s linear infinite;
}

@keyframes spin-hour {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-min {
  100% {
    transform: rotate(360deg);
  }
}


.clock-label {
  position: absolute;
  font-size: 1rem;
  font-family: 'Cinzel', serif;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
  animation-delay: 1s;
}


.season-initial {
  display: inline;
}


.season-full {
  display: none;
}


.clock-label:hover .season-initial {
  display: none;
}

.clock-label:hover .season-full {
  display: inline;
}


.label-top {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: #0000EE; 
}

.label-right {
  top: 50%;
  left: 92%;
  transform: translateY(-50%);
  color: #00cc44; 
}

.label-bottom {
  top: 92%;
  left: 50%;
  transform: translateX(-50%);
  color: #FF0000; 
}

.label-left {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #D2691E; 
}

.begin-container {
  text-align: center;
}

.begin-text {
  font-size: 2rem;
  color: #000;
  opacity: 0;
  animation: fadeIn 3s ease-in forwards;
  cursor: pointer;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.all-seasons-link {
  margin-top: 10px;
  font-size: 0.9rem;
}

.all-seasons-link a {
  color: black;
  text-decoration: underline;
  font-style: italic;
}
audio {
  margin-top: 60px;
  margin-bottom: 20px;
  width: 300px;
}