nav {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 20px;
  padding-top: 0px;
  margin-top: 0px;
  background-image: url(Navbar.jpg);
  background-size: 100%;
  background-position: center;
  background-size: cover;
}
@media (max-width: 48em) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
  }
}
nav ul {
  display: flex;
  list-style-type: none;
  padding-inline-start: 0;
  margin: 5%;
}
nav ul li {
  margin: 20px;
}
nav ul li a {
  color: wheat;
  font-size: xx-large;
  font-weight: 1000;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black,
    1px 1px 0 black;
  text-decoration: underline;
}
nav ul li a:hover {
  color: chocolate;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
footer {
  display: flex;
  justify-content: space-between;
  background-color: ghostwhite;
  width: 100%;
  margin-top: auto;
  box-sizing: border-box;
  text-align: left;
  padding: 2em;
  font-size: 1.2em;
  font-weight: 600;
  padding: 1em;
}
footer p {
  margin: 0.5em 0;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content img {
  width: 25em;
  height: auto;
  max-width: 90%;
  border-radius: 3%;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  text-align: center;
  gap: 2em;
  background-color: wheat;
}

h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  color: #444;
}

h2 {
  font-size: 2em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #555;
}

main p {
  max-width: 44em;
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 1.2em;
  color: #333;
}
