* {
  box-sizing: border-box;
}
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
}
#backgroundArt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
#dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
/* Header */
header {
  position: fixed;
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  z-index: 999;
}
#menu {
  background-color: #fff;
  display: flex;
  width: 100vw;
  justify-content: flex-end;
}
#menu ul {
  display: flex;
  transition: transform 0.3s ease-out;
  transform: translateX(0);
  padding-right: 30px;
}
#menu ul.slide-in {
  transform: translateX(0%);
}
#menu ul li {
  display: inline;
  margin-right: 20px;
}
#menu ul li:last-child {
  margin-right: 0;
}
#menu li a {
  color: #002020;
  font-weight: 600;
  padding: 5px 20px 5px 20px;
}
#menu li a:hover {
  color: #fff;
  font-weight: 600;
  background-color: #004040;
}
/* hamburger icon*/
#hamburger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  order: -1;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.5);
}
#hamburger-icon div {
  width: 2rem;
  height: 0.25rem;
  background: black;
}
/* main */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.content {
  font-family: 'Outfit', sans-serif;
  max-width: 70%;
  z-index: 99;
}
.content h1 {
  font-size: 3em;
  color: #fff;
  text-align: center;
  font-weight: 900;
}
.content p {
  font-size: 2em;
  color: #fff;
  /*background-color: aqua;*/
}
.copy {
  text-align: justify;
  font-weight: 400;
}
.link {
  text-align: center;
  align-content: center;
}
.link a {
  color: #004040;
  background-color: #fff;
  padding: 4px 8px 4px 8px;
  border-radius: 10px;
  font-weight: 800;
}
.link a:hover {
  color: #fff;
  background-color: #004040;
}
/* highlight */
.highlight {
  font-family: 'Outfit', sans-serif;
  color: #004040;
  background-color: #fff;
  padding: 1px 2px 1px 2px;
  font-weight: 800;
}
@media (max-width: 768px) {
  #menu ul {
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    display: flex;
    text-align: left;
    line-height: 250%;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: white;
    padding-left: 30%;
    margin-top: 0px;
    font-size: 1.5em;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  }
  #menu ul.slide-in {
    transform: translateX(0);
  }
  #hamburger-icon {
    display: flex;
  }
  .content {
    max-width: 90%;
  }
  .content h1 {
    font-size: 1.5em;
  }
  .content p {
    font-size: 1.25em;
  }
  .highlight {
    padding: 0px 0px 0px 0px;
  }
}