@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-image: url("https://images.rawpixel.com/image_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTEyL3Jhd3BpeGVsX29mZmljZV8zN19taW5pbWFsX2NoaWJpX2thd2FpaV9zdHlsZV9vZl9idXJnZXJfZHJlYW15X19hMDIwNWNjOC0yMmZjLTQyNmUtOGQ4MC01NzIzYTgzYTE2MWRfMi5qcGc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #a6413c;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: -1;
}

h1, h2 {
  text-align: center;
}

.container {
  padding: 2em;
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
}

p, ul {
  font-size: 1.1em;
  font-weight: 600;
}

figure {
  border: 2px solid #452509;
  padding: 10px;
  margin: 2em auto;
  background: #fff7db;
  text-align: center;
  border-radius: 10px;
}

figcaption {
  background-color: #5d7a5d;
  color: white;
  font-style: normal;
  padding: 5px;
  margin-top: 10px;
  border-radius: 6px;
}

img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

audio, video, iframe {
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}