/* General Reset and Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding/border are included in element's total width/height */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #FFFFFF;
    color: #000;
    padding: 20px;
    min-height: 100vh;
}

header, main, footer {
    width: 90%;
    max-width: 1200px; /* Limits overall width on large screens */
    margin: 20px auto;
    background: #f6f6f6;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    color: #7D7D7E;
}

/* Media Query for screens smaller than 600px */
@media (max-width: 800px) {
    header, main, footer {
        width: 100%; /* Full width on mobile */
        margin: 10px 0;
        padding: 15px;
        border-radius: 0;
    }
}
.responsive {
  max-width: 100%;
  height: auto;
}
a:link, a:visited {
  background-color: #;
  color: #000000;
  padding: 5px 100px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: #;
}
/* Add a black background color to the top navigation */
.topnav {
  background-color: #;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  color: #000000;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #727376;
  color: white;
}