@import url("https://use.typekit.net/zoj0fcc.css");

* {
  margin: 0;
  padding: 0;
  font-family: balboa-plus-fill, sans-serif;
}

body {
  background-color: pink;
}

/* NAV BAR */
nav {
  height: 100px;
  width: 100vw;
  background: white;
  position: fixed;
  z-index: 1000;
}

nav li {
  display: inline;
  float: left;
}

nav a {
  display: inline-block;
  text-decoration: none;
  width: 19.99vw;
  text-align: center;
  padding: 40px 0;
  color: grey;
  transition: 0.1s;
  font-size: 1.5em;
}

nav a:hover {
  color: cyan;
}

nav a:active {
  color: pink;
}
#logo a {
  font-family: balboa-plus-primary, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5em;
  padding: 26px 0;
}

#ham-button {
  display: none;
}
/* NAV BAR BREAKPOINT */
@media screen and (max-width: 479px) {
  #ham-button {
    border: none;
    color: white;
    margin: 0;
    padding: 0;
    display: block;
    background-color: pink;
    z-index: 2000;
    position: fixed;
    bottom: 0%;
    left: 0;
    width: 10vh;
    height: 10vh;
    text-align: center;
    box-shadow: none;
    /* transform: translateY(-95%); */
    transition: transform 1s;
    font-size: 1.5em;
  }

  .slide-the-drawer {
    transform: translateX(100vw);
  }

  .slide-the-burger {
    /* transform: translateX(300vw); */
  }

  nav {
    display: block;
    left: -100vw;
    height: 100vh;
    transition: transform 1s;
    width: 100vw;
  }

  nav ul {
    height: auto;
  }

  nav li {
    width: 100%;
    float: left;
    position: relative;
  }

  nav li a {
    width: 100%;
    text-align: center;
  }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
  #ham-button {
    border: none;
    color: white;
    margin: 0;
    padding: 0;
    display: block;
    background-color: pink;
    z-index: 2000;
    position: fixed;
    bottom: 0%;
    left: 0;
    width: 15vh;
    height: 15vh;
    text-align: center;
    box-shadow: none;
    /* transform: translateY(-95%); */
    transition: transform 1s;
    font-size: 1.5em;
  }

  .slide-the-drawer {
    transform: translateX(100vw);
  }

  .slide-the-burger {
    /* transform: translateX(300vw); */
  }

  nav {
    display: block;
    left: -100vw;
    height: 100vh;
    transition: transform 1s;
    width: 100vw;
    z-index: 1000;
  }

  nav ul {
    height: auto;
    z-index: 1001;
  }

  nav li {
    width: 100%;
    float: left;
    position: relative;
    z-index: 1002;
  }

  nav li a {
    width: 100%;
    text-align: center;
    z-index: 1003;
  }
}

/* MAIN MENU */
main {
  height: 180vh;
  width: 100vw;
}

section {
  height: 100%;
  width: 50vw;
  float: left;
  background-position: center;
}

#left {
  background-image: url("../img/left.jpg");
  background-size: cover;
}

#right {
  background-image: url("../img/right.jpg");
  background-size: cover;
}

h1 {
  color: white;
  text-align: center;
  font-size: 10em;
  font-family: balboa-plus-primary;
  font-weight: 400;
}

#menu-bg {
  position: absolute;

  left: 50%;
  top: 20%;
  background-color: pink;
  border: 2px solid white;
  width: 30vw;
  height: 18vh;
  transform: translateX(-50%);
}

article {
  position: absolute;
  width: 80vw;
  height: 120vh;
  font-size: 10em;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 2px solid black;
}
