#header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95vw;
  max-width: 1000px;
  background-color: #ffa07a;
  padding: 10px;
  text-align: center;
  z-index: 100;
  border-radius: 0px 0px 30px 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#header a {
  color: #fff;
  text-decoration: none;
  margin: 0 1%; /* Adjust the margin for spacing between buttons */
  padding: 8px 2%; /* Adjust the padding for button size */
  border: 2px solid #fff;
  border-radius: 30px;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
	text-shadow: 0 0 50px #ffffff, 0 0 10px #000, 0 0 5px #000;
	 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#header a:hover {
  background-color: #555;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#header a:active {
  transform: scale(0.95);
}

/* Responsive adjustments */
@media (max-width: 825px) {
  #header {
    width: 98vw;
  }

  #header a {
    margin: 0 0.25%; /* Adjust the margin for spacing between buttons */
    padding: 2px 0.5%; /* Adjust the padding for button size */
    width: auto; /* Set width to auto to prevent button size change */
  }
}
#footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px; /* Adjust the max-width as needed */
  background-color: #ffa07a;
  padding: 10px;
  text-align: center;
  color: #fff;
  z-index: 100;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
	text-shadow: 0 0 50px #ffffff, 0 0 10px #000, 0 0 5px #000;
}

#footer p {
  margin: 0; /* Remove default paragraph margin */
}

#footer a {
  color: #fff;
  transition: color 0.3s;
}

#footer a:hover {
  color: #ccc; /* Adjust the hover color as needed */
}