
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Uber Move Text', sans-serif;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
img {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
  animation: fadeIn 2s ease-out;
}
.text {
  margin-top: 30px;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #000000;
  font-weight: 500;
}
.text span {
  display: block;
  margin-top: 10px;
  color: #000000;
  font-weight: bold;
  animation: fadeInUp 2s ease-in-out;
}
.quote {
  margin-top: 30px;
  max-width: 700px;
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInQuote 2.5s ease 5s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInQuote {
  to { opacity: 1; }
}
@media (max-width: 600px) {
  .text {
    font-size: 1.2rem;
  }
  .quote {
    font-size: 1rem;
  }
}
