:root {
  --text-color: #ffffff;
  --bg-color: #000000;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.responsive-image {
  width: 100%;
  height: auto;
  max-width: 960px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.contact {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
}

.contact h2 {
  margin-top: 0;
}

.contact p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.site-footer {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: transparent;
  color: #bbb;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .contact p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .responsive-image {
    max-width: 90%;
  }

  .container {
    padding: 2rem;
  }
}

/* === Animations === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.responsive-image {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

.contact {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  animation-delay: 1s;
}

.site-footer {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  animation-delay: 1.5s;
}

