/* ==============================
   Hello Japan Page Styles
   ============================== */

body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  color: #222;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Header */
h1 {
  font-size: 2.5rem;
  color: #d23c3c;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Japanese flag image */
img {
  display: block;
  margin: 10px auto 25px;
  border: 1.5px solid #d23c3c;
  border-radius: 6px;

  /* Fade-in animation */
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInFlag 1.6s ease-out forwards;
}

/* Keyframes for fade-in effect */
@keyframes fadeInFlag {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Paragraph */
p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 600px;
}

/* Links */
a {
  text-decoration: none;
  background-color: #d23c3c;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

a:hover {
  background-color: #b52f2f;
  transform: scale(1.05);
}

/* Footer */
footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
}

footer strong {
  color: #d23c3c;
}
