

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.hero {
  flex: 1; /* Fill remaining space */
  background-image: url("../images/Background.png");
  background-color: #7353d2;
  background-repeat: repeat-y;
  background-size: auto;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
}

.profile-info p {
  font-family: Arial, sans-serif;
  font-size: 24px; /* Adjust font size */
  font-weight: bold; /* Make it bolder */
}  

.profile-picture {
  width: 70px; /* Adjust the size of the profile picture */
  height: 70px;
  border-radius: 50%; /* Makes the image circular */
  margin-right: 10px; /* Adjust spacing between picture and name */
}

.table-container {
  background-color: rgba(128, 128, 128, 0.5);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  width: 90%;
  margin: 0 auto;
  overflow-x: auto;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .profile-picture {
    width: 40px;
    height: 40px;
  }
}  

.footer {
  background-color: #a0caff;
  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: #a0caff;
padding: 10px;
}

.center-content {
display: flex;
align-items: center;
}

.center-content img {
width: 120px;
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: #a0caff;
}
  
  .navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  }

  .footer  img {
    width: 400px;
    height: auto;
    margin-right: 10px;
  }

  .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;
  }
}

.table-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.links-container a {
  margin: 10px;
}
/* Additional CSS for href centering and grouping, iframe resizing, and footer image size for mobile */
.links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.links-container a {
  margin: 10px;
  display: inline-block; /* Ensures links stay in groups */
}

/* Reduce iframe size for mobile */
@media only screen and (max-width: 600px) {
  iframe {
    width: 100%; /* Make iframe full width on mobile */
    height: 200px; /* Set a smaller height for mobile */
  }

  /* Reduce footer image size for mobile */
  .footer img {
    width: 100px; /* Adjust width for smaller screens */
    height: auto;
    margin-right: 5px; /* Adjust margin for spacing */
  }
}
