.full-width-header {
  display: flex;
  width: 100%;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
  height: 300px;           /* optional: controls vertical space */
}

h1{
  text-align: center;
  font-size: 4em;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-shadow: 0 0 10px #000, 0 0 20px #cf1818;

}

h2{
  text-align: center;
  font-size: 3em;
  font-family: 'Arial Black', Gadget, sans-serif;
  text-shadow: 0 0 3px #000, 0 0 10px #cf1818;
  text-decoration: underline;
}

p{
  font-size: 1.2em;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  margin: 20px;
  text-align: center;
  font-weight: bold;
}

.center-container {
  text-align: center;
}

.rangebutton {
  font-weight: bold;
  font-size: 1.3rem;
  color: black;
  background-color: #e63946; /* Vivid red */
  padding: 12px 24px;
  border: solid black 2px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.rangebutton:hover {
  background-color: #d62828;
  transform: scale(1.08);
}

img {
  display: block;
  margin: 20px auto;           /* Centers the image */
  max-width: 100%;             /* Responsive sizing */
  height: auto;
  border: 4px solid #e63946;   /* Eye-catching border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* Adds depth */
  transition: transform 0.3s ease;
}

body {
  background-color: lightgrey;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

