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

.image-container {
  position: relative;
}

.fade-in {
  opacity: 0;
  animation: fadeIn ease-in 3s;
  animation-fill-mode: forwards;
}

.cotd-button {
  font-family: 'Cinzel', serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #8b0000; /* Dark red background color */
  color: #ffd700; /* Gold text color */
  border: 2px solid #ffd700; /* Gold border */
  padding: 15px 30px;
  white-space: nowrap;
  font-size: 18px;
  cursor: pointer;
  z-index: 1;
  border-radius: 30px;
  opacity: 0;
  animation: fade-in-button 1s ease-in-out 2s forwards;
}

.cotd-button:hover {
  background-color: #ffd700; /* Gold background color on hover */
  color: #8b0000; /* Dark red text color on hover */
  border-color: #8b0000; /* Dark red border on hover */
}

.shareButton {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #ffffff;
  background-color: #8b0000;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  display: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in-button {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}