/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-image: url("bgfire3.gif");
  background-size:100px;
  background-repeat: repeat;
  height: 100%;
}

body {
  max-width: 1200px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: rgba(0,0,0,0.85);
  color: white;
  border: 2px solid #666;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  line-height: 1.6;
  margin: 2rem auto;
}

body p, ul{
  max-width: 800px;
  margin: 2rem auto;
}

/* Header */
header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

header h1 {
  font-size: 4rem;
  color: red;
  margin: 0;
  text-align: center;
}

main img {
  width: 1200px;
  height: 800px;
}
/* Sections */
main {
  max-width: 1200px;
  margin: 0 auto;
}

iframe {
  display: block;
  margin: 2rem auto;
}


/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 3rem;
}

body {
  background-color: #121212;
  color: #e0e0e0;
}

body footer {
  color: #888;
}

blockquote {
  background-color: rgba(0, 0, 0, 0.7); /* dark transparent background */
  color: #ff4d4d; /* softer red instead of pure red */
  border-left: 6px solid #ff0000;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.6;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

blockquote footer {
  text-align: right;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.9rem;
  color: #ccc;
}


