body {
  margin: 0;
  background: linear-gradient(180deg, #fffbe6, #f7f1d6);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Lato', sans-serif;
}

.container {
  text-align: center;
}

#main-cookie {
  width: 200px;
  max-width: 80%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#main-cookie:hover {
  transform: scale(1.05);
}

.cookie-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.cookie-wrapper img {
  width: 100px;
  max-width: 100%;
  height: auto;
  opacity: 1; /* direkt sichtbar */
}

#quote {
  font-size: 1.2rem;
  color: #333;
  max-width: 80%;
  line-height: 1.5;
  margin: 10px;
  opacity: 0;
  transition: opacity 0.8s ease;
}

#quote.show {
  opacity: 1;
}

#reset {
  width: 40px;
  margin-top: 20px;
  cursor: pointer;
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  #main-cookie {
    width: 150px;
  }

  .cookie-wrapper img {
    width: 80px;
  }

  #quote {
    font-size: 1rem;
  }
}
