nav {
  height: 120px;
  width: 100%;
  background-color: black;
  position: relative;
}

nav > a > img {
  position: absolute;
  height: 100px;
  top: 10px;
  left: 10px;
}

@media screen and (max-width: 800px) {
  .nav-links-mobile {
    display: none;
  }
  .nav-links-mobile-show {
    display: block;
  }
  .nav-links-mobile > a {
    display: block;
    color: white;
    text-decoration: none;
    background-color: black;
    position: relative;
    top: 95px;
    padding-left: 10px;
    font-size: 30px;
  }
  /**Hamburger Menu**/
  .menu-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50px;
    right: 0;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }
  .menu-btn_burger {
    width: 50px;
    height: 6px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
  }
  .menu-btn_burger::before, .menu-btn_burger::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 6px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
  }
  .menu-btn_burger::before {
    transform: translateY(-16px);
  }
  .menu-btn_burger::after {
    transform: translateY(16px);
  }
  /* ANIMATION */
  .menu-btn.open .menu-btn_burger {
    transform: translateX(-50px);
    background: transparent;
  }
  .menu-btn.open .menu-btn_burger::before {
    transform: rotate(45deg) translate(35px, -35px);
  }
  .menu-btn.open .menu-btn_burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
  }
  .nav-links {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .nav-links {
    position: absolute;
    top: 45px;
    right: 0;
  }
  .nav-links > a {
    color: white;
    font-size: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    padding-inline: 10px;
  }
  .nav-links-mobile, .nav-links-mobile-show {
    display: none;
  }
  .menu-btn {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
}

h1, h2, h3, h4, a, p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding-inline: 10px;
  padding-block: 5px;
}

h1 {
  text-align: center;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

p, a {
  font-size: 20px;
}

footer {
  padding-block: 10px;
  padding-inline: 10%;
  background-color: black;
}

.footer-bottom > a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom > span {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.content {
  width: 100%;
  padding-block: 20px;
  background: linear-gradient(darkorange, #f27a29);
}

.about {
  background-color: whitesmoke;
  border: 2px solid black;
  border-radius: 10px;
  margin-inline: 10%;
  margin-block: 20px;
  display: grid;
  grid-template-columns: 100%;
}

.about > div {
  display: table-cell;
  vertical-align: middle;
  justify-content: left;
  margin-block: auto;
  grid-column: auto/span 1;
}

.about > img {
  display: block;
  margin-block: 10px;
  margin-inline: auto;
  border: 2px darkorange solid;
  border-radius: 10px;
  width: 90%;
}

.insta-logo {
  width: 50px;
  padding-bottom: 10px;
}

.about > span > a {
  display: flex;
  align-items: center;
  color: black;
  text-decoration: none;
}

.img-space {
  padding-left: 5px;
  padding-bottom: 10px;
}

a:hover {
  color: orange;
}

.about > p {
  text-align: center;
}

@media screen and (min-width: 800px) {
  .about {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .about > h1, .about > p {
    grid-column: auto/span 2;
  }
  .about > div {
    grid-column: auto/span 1;
  }
  .about > span {
    grid-column: auto/span 2;
  }
  .about > img {
    grid-column: auto/span 1;
  }
}/*# sourceMappingURL=main.css.map */