
body {
  margin: 0;
  padding: 0;
  font-family: 'Cursive', fantasy;
  color: #e1d0f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  background-color: #2e0e50;
  overflow: hidden;
  background-image: url("rand_mond.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 100% 100%;   
  
}

.titleDiv{
  flex: 0.5;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
}

h1 {
  font-size: 45px;
  max-width: 50%;
  margin: 0;
  color: #d8baf1;
  line-height: normal;
}

h2 {
  font-size: 24px;
  max-width: 50%;
  color: #cfaaf4;
  margin-top: -0.5cm;
}

.bottomDiv{
  flex: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.kugel-wrapper {
  flex: 2;
  margin-bottom: 5px;
  bottom: 12vh;
}

.ButtonDiv{
  flex: 1;
}

.click-here {
  background-color: #b183d1;
  color: #3d1c60;
  border: none;
  padding: 5px 12px;
  font-size: 14px;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}

.tarot-bild {
  width: 80px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.stars {
  position: fixed;
  left: 35vw;
  bottom: 0;
  width: 30vw;
  height: 30vh;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  display: none;
  opacity: 0;
  transition: opacity 3s ease;
}

.star-left-1 {
  top: 10px;
  left: 20px;
  width: 6vw;
  height: 6vh;
}

.star-left-2 {
  top: 50px;
  left: 35px;
  width: 4.5vw;
  height: 7.5vh;
}

.star-right {
  top: 10px;
  left: 140px;
  width: 7.5vw;
  height: 14vh;
}

.star-right-2 {
  top: 55px;
  left: 175px;
  width: 7vw;
  height: 7vh;
}


.fade-in {
  display: block;
  opacity: 1;
}

.fade-out {
  opacity: 0;
  transition: opacity 3s ease;
}


.seitenrand {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 1000;
  pointer-events: none;
}

.click-here:hover {
  background-color: #FEFED1;
}


.quote-wrapper {
  flex: 1;
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  text-align: center;
  z-index: 5;
}

.quote {
  font-family: 'Cursive', fantasy;
  max-width: 60%;
  font-size: 35px;
  color: #f1f1f1;
  display: none;
  background: none;
  word-wrap: break-word;
  line-height: 1.6;
}


@keyframes shake-soft {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3px, 2px); }
  40%  { transform: translate(3px, -2px); }
  60%  { transform: translate(-2px, 1px); }
  80%  { transform: translate(2px, -1px); }
  100% { transform: translate(0, 0); }
}

.shake {
  animation: shake-soft 0.8s ease;
}

