/* Reset some default styles for consistency */
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
  background-color: #000; /* Dark background */
  color: #fff; /* Light text */
  font-size: 1.2em; /* Increased font size for body text */
}

.container {
  width: 95%;
  margin: 20px auto;
  margin-left: 20px; /* Add left margin */
  margin-right: 20px; /* Add left margin */
}

.research-container {
  display: flex; /* Use flexbox to control layout */
}

    .header {
      background: url('fire.gif') center center no-repeat; /* Fire GIF background */
      background-size: cover; /* Cover the entire header with the background */
      color: #fff;
      padding: 1.5em 0; /* Increased padding for emphasis */
      text-align: center; /* Center align the text */
      width: 104.1%;
      font-family: 'Comic Sans MS', cursive; /* Comic Sans MS for that tacky look */
    }


.header h1 {
  font-size: 3em; /* Larger font size for a bold heading */
  text-transform: uppercase; /* Uppercase text for added tackiness */
  letter-spacing: 5px; /* Increased letter spacing */
  margin-bottom: 20px; /* Increased margin for spacing */
}


.section {
  padding: 2em 0;
  margin-left: 20px; /* Add left margin */
}

.section h2 {
  color: #fff; /* White heading text */
  border-bottom: 2px solid #ff0000; /* Red underline for headings */
}

.footer {
  background-color: #ff0000; /* Purple footer background */
  color: #fff;
  padding: 1em 0;
  text-align: center;
  width: 100%;
}

/* Add neon green to links */
a {
  color: #00ff00; /* Neon green link color */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Create a simple button style with a neon green border */
.button {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #007BFF; /* Blue button background */
  color: #fff; /* White button text */
  text-align: center;
  text-decoration: none;
  border: 2px solid #00ff00; /* Neon green border */
  border-radius: 4px;
  cursor: pointer;
}

.button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.topnav {
  padding: 20px 10px;
  width: 100%;
}
