body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.spacer {
    height: 50px; /* Add x pixels of space */
}

p {
  font-size: 18px;
  font-family: 'Times New Roman', Times, serif;
}

h2 {
    font-size: 45px;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pacman.png') repeat; /* Replace with the path to your tileset image */
}

.content {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 66.666%; /* Two-thirds of the viewport width */
    min-height: 100vh; /* Full height of the viewport */
    padding: 20px; /* Adjust padding as needed */
    padding-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.8); /* Background color for the content area */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Optional: Add a box shadow for visual depth */
}

.highlight-section {
  font-family: 'Arial', sans-serif; /* Change to a decorative font if you prefer */
  background-color: #f2f2f2; /* Light grey background, you can choose any color */
  border: 2px solid #333333; /* Solid border */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Padding around the text */
  margin: 20px 0; /* Margin above and below the section */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: all 0.3s ease-in-out; /* Smooth transition for any changes */
  text-align: center; /* Centered text */
}

.highlight-section h1 {
  color: #333333; /* Dark color for heading */
  margin-bottom: 15px; /* Space below the heading */
  text-transform: uppercase; /* Uppercase heading */
  letter-spacing: 2px; /* Spacing between letters */
}

.highlight-section p {
  color: #555555; /* Slightly lighter color for paragraph */
  line-height: 1.6; /* Improved line height for readability */
}

.page-title {
  font-family: 'Arial', sans-serif; /* Choose a font that fits your design */
  font-size: 2.5em; /* Larger font size */
  color: #1A1A1A; /* Choose a color that stands out */
  text-align: center; /* Center align the title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
  margin-top: 20px; /* Top margin */
  margin-bottom: 20px; /* Bottom margin */
  letter-spacing: 1px; /* Spacing between letters */
  line-height: 1.2; /* Line height for multi-line titles */
  padding: 10px; /* Padding around the text */
  background-color: #f0f0f0; /* Background color for the title */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Box shadow for a 3D effect */
  margin-left: auto; /* Center the title block */
  margin-right: auto; /* Center the title block */
}



canvas {
    display: block;
    width: 100%;
    height: 100%;
}
  
.image-background {
  position: relative;
}

  .image-background a {
    position: absolute;
    top: 35px;
  }
  
  .image-background a:nth-child(1) {
    left: 15px;
  }
  
  .image-background a:nth-child(2) {
    right: 15px;
  }
  
  .image-small {
    width: 200px; /* Set the desired width */
    height: auto; /* Maintains aspect ratio */
  }

  .image-smaller {
    width: 150px;
    height: auto;
  }
  
