

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
  }
  
  .hero {
    flex: 1; /* Fill remaining space */
    background-image: url("../images/Background.png");
    background-repeat: repeat-y;
    background-size: contain;
  }
  
  .footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    flex-shrink: 0; /* Prevent footer from shrinking */
  }
.navbar {
  display: flex;
  justify-content: center; /* Center the flex items horizontally */
  align-items: center;
  background-color: #333;
  padding: 10px;
}

.center-content {
  display: flex;
  align-items: center;
}

.center-content img {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

.center-content p {
  margin: 0;
  font-size: 26px;
  color: red;
}
/* Your existing CSS styles here */

  .footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
  }
  
  body {font-family: "Times New Roman", Georgia, Serif;}
  h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display";
    letter-spacing: 5px;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .navbar {
  overflow: hidden;
  background-color: #333;
  }
  
  .navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  }
  
  .dropdown {
  float: left;
  overflow: hidden;
  }
  
  .dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
  }
  
  .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  }
  
  .dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  }
  
  .dropdown-content a:hover {
  background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
  display: block;
  }
  
  /* Shocktor additions */

  .content_area {
    margin: 0 auto; 
    text-align: center;
    display: grid;
    grid-column: 1;
  }

  .content_area a.button .button_image {
    width: 40%;
    margin: 0;
    padding: 0;
  }

  .content_area a.button {
    position: relative;
    margin-top: -10%;
  }

.content_area a.button:first-child {
  margin-top: 0px;
}

@media only screen and (min-width: 500px) and (max-width: 875px)  {
  .content_area a.button .button_image {
    width: 80%;
    margin: 0;
    padding: 0;
  }

  .content_area a.button {
    position: relative;
    margin-top: -20%;
  }

  .content_area a.button:first-child {
    margin-top: 0px;
  }

  .hero {
    flex: 1; /* Fill remaining space */
    background-image: url("../images/Background.png");
    background-size: cover;
  }
}


@media only screen and (max-width: 499px) {
  .content_area a.button .button_image {
    width: 80%;
    margin: 0;
    padding: 0;
  }

  .content_area a.button {
    position: relative;
    margin-top: -20%;
  }

  .content_area a.button:first-child {
    margin-top: 0px;
  }

  .hero {
    flex: 1; /* Fill remaining space */
    background-image: url("../images/Background.png");
    background-size: cover;
  }
}
  