/* interaction.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  background: url('bg.png') no-repeat center center fixed;
  background-size: cover;
  color: #5b3a4f;
}

.page {
  max-width: 800px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #c03e8a;
  text-align: center;
}

header h2 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #8c3a6b;
  text-align: center;
  margin-bottom: 2rem;
}

main p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #4a2e44;
}

footer {
  text-align: right;
  margin-top: 2rem;
}

footer a {
  text-decoration: none;
  color: #ffffff;
  background-color: #d86fa5;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

footer a:hover {
  background-color: #b94c89;
}
