@font-face {
    font-family: 'RetroGaming';
    src: url('https://ultradpg.neocities.org/RetroGaming.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Body styles */
body {
  margin: 0;
 /* font-family: "Pixelify Sans", sans-serif; */
  font-family: 'RetroGaming', sans-serif;
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 100vh;
  padding: 20px;
  background-image: url('https://ultradpg.neocities.org/NewNeo%20BG.png');
  background-size: cover; /* Ensures the image fills the screen */
  background-position: center center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-attachment: fixed; /* Optional: makes the background stay fixed when scrolling */
  background-color: #000000;
}

/* Container styles */
.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  max-width: 1200px;
  width: 100%;
  background-color: black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header styles */
header {
  background-image: url('https://ultradpg.neocities.org/Neo%20Banner%2025.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  color: white;
  text-align: center;
  padding: 10rem;
}

/* Navigation styles */
nav {
  background-image: url('https://ultradpg.neocities.org/Neo%20Banner.png');
  background-repeat: no-repeat;
  background-size: fill;
  background-position: center;
  background-color: #333;
  text-align: center;
  padding: 1rem 0;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #ffff00; /* Optional: Changes the color when a user hovers over a link */
  text-decoration: underline;
}

/* Main content styles */
.main-content {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 20px;
  padding: 20px;
  flex-grow: 1;
  justify-items: center;
}

/* Sidebar styles */
.sidebar-left, .sidebar-right {
  background-image: url('https://ultradpg.neocities.org/NEO%20Pixel%20side.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
  padding: 1rem;
  color: white; /* Sets the text color to white for both sidebars */
  background-attachment: local; /* Allows the background to stretch with content */
  align-items: center; /* Centers the content horizontally */
  list-style-image: url('https://ultradpg.neocities.org/Bullet.png'); /* Replaces bullet points with an image */
  padding-left: 10px; /* Adjust the padding as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;           
}

.sidebar-left a, .sidebar-right a {
  color: white; /* Ensures that any links within the sidebars are also white */
}

.sidebar-left a:hover, .sidebar-right a:hover {
  color: #ffff00; /* Optional: Changes the color when a user hovers over a link */
}

/* Content area styles */
.content {
  display: flex;
  flex-direction: column; /* Stacks the content vertically */
  padding: 1rem;
  height: 100%; /* Ensures the content area fills the available space */
}

.top-content, .bottom-content {
  flex: 1; /* Makes each section take up equal space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #ffffff; /* You can adjust the background color if needed */
  margin-bottom: 20px; /* Adds space between the two sections */
}

.bottom-content {
  margin-bottom: 0; /* Removes margin from the bottom section */
  color: white;
  background-color: transparent;
}

footer {
  background-image: url('https://ultradpg.neocities.org/Neo%20Banner.png');
  background-repeat: no-repeat;
  background-size: fill;
  background-position: center;
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Updates section styles */
.updates {
  margin-top: 20px;
  text-align: left;
}

.updates h3 {
  color: white; /* or another color that fits your theme */
}

/* Textarea styles */
textarea {
  width: 100%;
  height: auto; /* Static height for the text box */
  padding: 10px;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #000000;
  color: #ffffff;
  border: 4px solid #FFF;
  border-radius: 5px;
  resize: none; /* Prevents resizing of the text box */
  overflow-y: scroll; /* Enables vertical scrolling */
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: none; /* Remove default outline */
}

/* Responsive design */
@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "content"
      "left"
      "right";
  }
}

