body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: myFirstFont;
  src: url(/src/blowbrush.ttf);
}

  .hamburger {
    position: absolute;
    top: 20px;
    right: 25px;
    margin-left: 50px;
  }

  .discord {
    position: absolute;
    top: 65px;
    right: 27px;
    margin-left: 50px;
  }

  .twitter {
    position: absolute;
    top: 100px;
    right: 27px;
    margin-left: 50px;
  }

  .zoom {
    transition: transform .001s; /* Animation */
  }
  
  .zoom:hover {
    transform: scale(1.005); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

  .zoom-md {
    transition: transform .4s; /* Animation */
  }

  .zoom-sm {
    transition: transform .1s; /* Animation */
  }

  .zoom-sm:hover {
    transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

  .zoom-md:hover {
    transform: scale(1.3); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }


  #menu__toggle {
    opacity: 0;
  }
  #menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
  }
  #menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    left: 0 !important;
  }
  .menu__btn {
    position: fixed;
    top: 30px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition-duration: .25s;
    z-index: 2;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }
  .menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: .25s;
  }
  .menu__item {
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition-duration: .25s;
  }

  @media only screen and (max-width: 600px) {
    .menu__box {
      display: flex;
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 80px 0;
      list-style: none;
      box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
      transition-duration: .25s;
    }
  }

::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
}

body {
  height: 100vh;
  background: radial-gradient(circle, rgb(255, 255, 255) 70%, rgb(243, 243, 243) 100%);
  position: relative;
}

.accordion {
  width: 80%;
  padding: 24px;
  border-radius: 8px;
  position: relative;
  transform-style: preserve-3d;
  margin-left: auto;
  margin-right: auto;
  margin-top: 120px;
}
.accordion .tab {
  cursor: pointer;
}
.accordion .tab:not(:last-child) {
  margin-bottom: 4px;
}
.accordion .tab-name {
  background: #191919;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
  position: relative;
  user-select: none;
  padding: 16px;
  border-radius: 24px;
  transition: all 0.5s ease;
}
.accordion .tab-name .chevron-icon {
  fill: white;
  position: absolute;
  left: calc(100% - 10px);
  top: 50%;
  transform: translate(-100%, -50%);
  transition: all 0.5s ease;
}
.accordion .tab-content {
  user-select: none;
  color: #7c828d;
  max-height: 0;
  overflow: hidden;
  padding: 10px;
  font-size: 16px;
  border-radius: 9px;
  transition: all 0.5s linear;
  animation: slideDownReverse 0.25s ease forwards;
}
.accordion .tab.active .tab-name {
  color: white;
}
.accordion .tab.active .tab-content {
  color: white;
  max-height: 300px;
  animation: slideDown 1s ease-out forwards;
}
.accordion .tab.active .chevron-icon {
  transform: translate(-100%, -50%) rotate(180deg);
  fill: white;
}
.accordion .tab:nth-of-type(1).active .tab-name {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(1).active .tab-content {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(2).active .tab-name {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(2).active .tab-content {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(3).active .tab-name {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(3).active .tab-content {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(4).active .tab-name {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(4).active .tab-content {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(5).active .tab-name {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(5).active .tab-content {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(6).active .tab-name {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(6).active .tab-content {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(7).active .tab-name {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(7).active .tab-content {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(8).active .tab-name {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}
.accordion .tab:nth-of-type(8).active .tab-content {
  background: #191919;
  box-shadow: 0 10px 25px rgba(123, 66, 209, 0.4);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes slideDownReverse {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-40px);
  }
}

@media only screen and (max-width: 600px) {
  .menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: .25s;
  }
}

footer#footer {
  background-image: url(/img/FooterBackground.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}