body {
  display: block;
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  --scrollbar-width: 0px;
  overflow-x: auto;
  overflow-y: scroll;
}

@font-face {
  font-family: "Aboreto";
  src: url("Fonts/Aboreto/Aboreto-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "EB Garamond";
  src: url("Fonts/EB_Garamond/EBGaramond-VariableFont_wght.ttf") format("truetype");
}

.banner {
  width: 100%;
  height: auto;
  margin: 0 auto; /* Centers the banner */
}

.container {
  width: 70%;
  margin: 0 auto; /* Centers the container */
  font-size: 3vw;
}

h1 {
  font-size: 3vw;
  text-transform: uppercase;
  font-weight: lighter;
  font-family: "Aboreto";
}

h2 {
  font-size: 2.5vw;
  text-transform: uppercase;
  font-weight: lighter;
  font-family: "Aboreto";
  text-decoration: underline;
}

a {
  text-decoration: none;
}

a:link,
:visited {
  color: black;
}

a:hover {
  color: purple;
}
a:active {
  color: red;
}

footer {
  width: 70%;
  font-size: 1.5vw;
  margin: 0 auto;
  padding-top: 3vh;
}

img {
  max-width: 100%;
  height: auto;
}

.navbar {
  display: flex;
  width: 80%;
  padding: 40px;
  justify-content: space-around;
  font-size: 1.5vw;
  text-decoration: none;
  margin: 0 auto;
  overflow: hidden;
}

.icon {
  display: none;
}

@media screen and (max-width: 800px) {
  .container {
    width: 90%;
    font-size: 7vw;
  }

  .banner {
  width: 100%;
  height: auto;
  margin: 0 auto; /* Centers the banner */
  }

  h1 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: lighter;
  }

  h2 {
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: lighter;
  }

  img {
    max-width: 100%;
    width: auto;
  }

  footer {
    width: 100%;
    font-size: 3vw;
    margin: auto;
    margin-top: 100px;
  }

  .navbar {
    display: flex;
    flex-direction: column;
    justify-self: end;
    justify-content: flex-start;
    text-wrap: nowrap;
    margin:0;
    padding-right:50px;
    border-left: solid 2px black;

    width: 20%;
    height: 100%;
    position: fixed;
    background-color: white;
    visibility: hidden;
  }

  .navbar a {
    font-size: 2.5vw;
    padding: 5px;
    transform:translateX(-10%);
  }

  .navbar.responsive {
    visibility: visible;
  }

  .icon {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
  }
}
