/* Basic body styles */
body {
  margin: 10px auto;
  background-color: #e5703d; /* color; orange*/
  height: auto;
  text-align: justify;
  font-family: "Orbitron", "Space Mono", serif;
  line-height: 1.6;
  margin: 20px;
}

#wrapper {
  width: 1000px; /* Or width: auto; */
  padding: 30px;
  margin: 10px auto;
  background: rgba(219, 195, 4, 2.0); /* color; mustard */
  height: auto;
  border-radius: 20px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2); 
}

/* Heading styles */
h1 {
  margin: 10px auto;
  text-align: center;
  font-size: 100px;
  margin-bottom: 10px;
}

h1 span {
   display: block;
  font-size: 45px;
  text-align: center;
}

h2 {
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
  padding: 10px;
  display: flex;
  align-items: center; /* Vertically align the image and text */
  position: static;
  text-align: center;
  font-size: 50px;
  padding: 5px;
}

table {
  font-size: 25px;
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-shadow: .1px .1px #000;
  border: 1px solid black;
  padding: 8px;
}

h4 p {
  font-size: 40px;
  text-align: left;

}

h4 {
  border-bottom: 5px solid #000;
  font-size: 40px;
  margin-bottom: 10px;
}

figcaption {
  font-style: italic;
  font-size: 14px;
  color: #fff;
  text-align: center;
  /* Center the text */
  margin-top: 8px;
  /* Add a small top margin */
}

/* Figure and image styles */
figure {
  margin-bottom: 10px;
  text-align: center;
}

img {
  box-shadow: 1px 1px 1.5px 1.5px #a63500;
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}

h2 img {
   box-shadow: 1px 1px 2.5px 2.5px #a63500;
  margin-right: 10px; /* Add spacing between the image and text */
  position: static;
  top: 20px; /* Adjust the vertical position of the image */
  left: 30px; /* Adjust the horizontal position of the image */
  border-radius: 330px; /* Make the image a circle */
  max-width: 175px; /* Adjust the size of the image */
  height: auto; /* Maintain aspect ratio */
}

td img {
  box-shadow: 1.5px 1.5px #a63500; 
  max-width: 250px;
  /* Adjust the value as needed */
  height: auto;
  /* Maintain aspect ratio */
}

#video-container {
  box-shadow: 1px 1px 2.5px 5px #a63500;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  z-index: 1;
}

#black-banner {
  position: absolute;
  /* Position the banner relative to the nearest positioned ancestor (e.g., body) */
  top: 0;
  /* Position the banner at the top of the page */
  left: 0;
  /* Position the banner at the left edge of the page */
  width: 100vw;
  /* Make the banner span the full viewport width */
  height: auto;
  /* Adjust the height as needed */
  background-color: rgba(166, 53, 0, 10); /* color; orange-red */ 
  z-index: -1;
  /* Place the banner behind the video */
}

/* Paragraph styles */
p {
  border-top: 2.5px solid #000;
  text-shadow: .2px .2px #000;
  font-size: 30px;
  margin-bottom: 2px;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5px;
}

/* List styles */
ul {
  margin-bottom: 5px;
}

li {

  text-shadow: .5px .5px #000;
  font-size: 25px;
  margin-bottom: 5px;
  line-height: 1.7;
}

/* Form styles */
form {
  margin: 10px;
}

label {
  text-shadow: .5px .5px #000;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 2px;
  margin-right: 10px;
  /* Adjust spacing as needed */
}

/* Grid container for responsiveness */
#grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
  #grid-container {
    grid-template-columns: 1fr;
  }
}




a:link,
a:visited {
  color: #74F005;
}