/* Base styles for the background */
body {
  background-color: #FFFFFF;
  color: #666666;
  font-family: Verdana, Arial, sans-serif;
}

nav a {
  text-decoration: none;
  color: #000033;
  transition: color 0.3s ease-out;
  padding: 10px 15px; /* Adds padding to make the links look like buttons */
  border: 2px solid #000033; /* Adds a border around each link */
  border-radius: 5px; /* Rounds the corners */
  display: inline-block; /* Ensures links behave like buttons */
  background-color: #f0f8ff; /* Adds a subtle background color */
  margin-bottom: 10px; /* Adds spacing between buttons */
  width: 100%; /* Makes the buttons fill the width of the nav */
}
a:hover {
  color: #248bf2;
  background-color: #e0f0ff; /* Changes background color on hover */
  transition: color 0.3s ease-out, background-color 0.3s ease-out; /* Smooth transition for hover */
}

/* Base styles for the main element */
main {
  padding-left: 275px;
  display: block;
  overflow: auto;
  background-color: #FFFFFF;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* Base styles for the footer */
footer {
  font-size: 90%;
  font-family: Palatino, "Times New Roman", serif;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (min-width: 1024px) {
  #wrapper {
    margin: auto;
  }
}

nav {
  text-align: center;
  font-weight: bold;
  background-image: linear-gradient(to bottom, #eceaea, #90C7E3);
  background-color: #18b7ec;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  position: fixed;
  height: 100%;
  width: 240px;
}

nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  padding: 10px 0;
}

nav a {
  text-decoration: none;
  font-size: 15px;
}
