body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: linear-gradient(to bottom, #ffe4e1, #ffc0cb);
  color: #333;
}

.tarot-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.card-container {
  margin: 20px 0;
}

.tarot-card {
  width: 50%;
  max-width: 400px;
  height: auto;
  animation: fadeIn 1.5s ease-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.result-text h2 {
  font-size: 1.8em;
  margin: 10px 0;
  color: #444;
}

.result-text h3 {
  font-size: 1.5em;
  margin: 5px 0;
  color: #888;
}

.result-text p {
  font-size: 1.2em;
  line-height: 1.6;
}

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

.tarot-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative; /* 相対位置指定 */
}

#copyright {
  position: absolute;
  bottom: -50px; /* 下からの位置 */
  right: 10px;  /* 右からの位置 */
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
