:root {
  --Josefin: "Josefin Sans", sans-serif;
  --beige: #f3ede4;
  --copyDarkPurple: #333333;
  --blue: #177acc;
}

#logo {
  width: 3vw;
  position: fixed;
  margin-left: 5%;
  margin-top: 1%;
  z-index: 999;
}
#Header {
  z-index: 998;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  width: 100vw;
  margin-right: 5%;
  margin-left: 5%;
}
.headerA {
  font-family: var(--Josefin);
}
#navBar {
  margin-left: 63%;
  margin-top: 2%;
  width: 35%;
  justify-content: space-between;
}
#navBar ul {
  padding: 0;
  list-style: none;
}
#navBar li {
  display: inline;
  padding: 5%;
}
#navBar a {
  color: var(--copyDarkPurple);
  text-decoration: none;
  font-size: 1.25vw;
}
#mobileNavDots {
  display: none;
}
.mobileNav {
  display: none;
}

.loader {
  width: 100vw;
  height: 100vh;
  background-color: rgba(243, 237, 228, 1);
  z-index: 9999;
}
.loading {
  position: absolute;
  width: 20vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (min-device-width: 320px) and (max-device-width: 812px) {
  #logo {
    width: 8vw;
  }
  a {
    text-decoration: none;
  }

  #Header {
    display: none;
  }
  #mobileNavDots {
    display: inline;
    width: 9vw;
    position: fixed;
    z-index: 999;
    margin-left: 85%;
    margin-top: 7%;
  }
  .mobileNav {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: var(--blue);
  }
  #navX {
    width: 8vw;
    margin-left: 85.5%;
    margin-top: 6%;
  }
  #NavText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #NavText p {
    text-align: center;
    color: var(--beige);
    font-size: 9vw;
    font-family: var(--Josefin);
    font-weight: 500;
  }
}
