html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  background-image: radial-gradient(#f51616, #ba2323, #a83232);
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

main {
  flex: 1;
}

.banner {
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  width: 96%;
  display: flex;
  justify-content: center;
  border: 3px solid black;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);

  user-select: none;
}

.banner img {
  max-height: 200px;
}

/* Style the navigation menu */
.navbar {
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  background-color: #ffffff;
  border: 3px solid black;
  /* OUTER BORDER */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

  font-size: 24px;
  font-weight: bold;

}

/* Navigation links */
.navbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: black;
  height: 100%;

  border-right: 1px solid black;
  /* INNER DIVIDERS */
}

.navbar a:last-child {
  border-right: none;
}

/* Add a background color on mouse-over */
.navbar a:hover {
  background-color: #a1a1a1;
}

.dropdown {
  flex: 1;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid black;
}

.dropbtn {
  width: 100%;
  height: 100%;
  background-color: white;
  color: black;
  font-size: 24px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropbtn:hover {
  background-color: #a1a1a1;
}

.dropdown-content {
  border: 1px solid black;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f1f1f1;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: black;
  font-size: 18px;
  border-right: none;
}

.dropdown-content a:hover {
  background-color: #a1a1a1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: left;
    /* If you want the text to be left-aligned on small screens */
  }
}

.about-container {
  width: 70%;
  margin: 60px auto;
  background-color: white;
  padding: 40px 50px;
  border: 3px solid black;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.about-container h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  text-decoration: underline;
}

.about-intro {
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
  color: #333;
}

.about-section {
  margin-bottom: 30px;
  border-top: 2px solid #ddd;
  padding-top: 20px;
}

.about-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #8b0000;
}

.about-closing {
  text-align: center;
  border-top: 2px solid #ddd;
  padding-top: 20px;
  font-size: 20px;
  color: #333;
}

footer {
  background-color: white;
  width: 100%;
  box-sizing: border-box;

  margin: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;

  border: 3px solid black;
}

footer a {
  color: black;
  text-decoration: none;
}

footer a:hover {
  background-color: #a1a1a1;
}

footer p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}