/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-image: url("https://afkgodofdestruction.neocities.org/DCNBackground.png");
  background-size: cover;
            background-position: center;
            background-attachment: fixed;
             display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the body is at least the height of the viewport */
  margin: 300; /* Resets default body margins */
}

main {
  flex: 1; /* The main content area grows to fill the remaining space */
}
footer {
  position: fixed;
  bottom: 0; /* Anchors it to the bottom of the viewport */
  width: 100%; /* Ensures it spans the full width */
  text-align: center;
}

h1 {
  text-align: center;
}
 h2, p {
  color: #FFFFFF;
}

.intro {
  width: 80%;
 background-color: rgba(0, 0, 0, 0.75);
    color: DarkMagenta; /* Fully opaque text color */
  margin-left: auto;
  margin-right: auto;
}



