:root {
  --main-color: #00e5ea;
}

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-size: 80%;
  font-family: Helvetica, sans-serif;
}

@media (min-width: 768px) {
  .body {
    font-size: 100%;
  }
}

a {
  text-decoration: none;
  color: black;
}

ul {
  list-style-type: none;
  padding: 0;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.bg-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: -12312321312313123;
  opacity: 0;
}

.preloader.active {
  z-index: 123123123123123123;
  opacity: 1;
}

/* navbar */
#navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.7rem;
  background: black;
  overflow: visible;
  position: relative;
}

.navbar__logo {
  width: 150px;
}

.navbar__menu {
  /* display: none; */
  padding: 2rem;
  border-top: 4px solid var(--main-color);
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
  z-index: 1231231;
  transition: all 0.3s ease;
}

.navbar__menu.active {
  right: 0%;
  transition: all 0.3s ease;
}

.navbar__link {
  color: white;
  padding: 0.5rem;
  font-size: 120%;
}

.navbar__link:hover {
  color: var(--main-color);
}

.navbar__icon {
  display: flex;
  flex-direction: column;
  width: 2.5rem;
  background-color: black;
  border: none;
  cursor: pointer;
}

.line {
  background: white;
  margin-top: 0.25rem;
  width: 100%;
  height: 0.25rem;
}

.navbar__icon:hover .line {
  background-color: var(--main-color);
}

@media (min-width: 768px) {
  #navbar {
    padding: 1.5rem 2rem;
  }

  .navbar__menu {
    display: block;
    padding: 0;
    border: 0;
    position: static;
    width: auto;
    height: auto;
  }

  .navbar__icon {
    display: none;
  }
}

/** Hero Section */
.hero {
  position: relative;
}

.hero__img {
  width: 100%;
  object-fit: cover;
}

/**
  Album Release
*/
#album-release {
  background-color: black;
  margin-top: -0.5rem;
}
.album-btn {
  margin-top: 1.25rem;
}

/* Videos */
.videos__btn {
  text-align: center;
  margin-top: 1.25rem;
}

/**
  Merch
*/
#merch {
  display: flex;
  flex-direction: column;
}
.merch__link {
  text-align: center;
}
.merch__img {
  width: 100%;
  height: auto;
  margin: 1.25rem auto;
}

.merch__btn {
  margin: 1.25rem auto;
}

@media (min-width: 768px) {
  .merch__img {
    width: 60%;
  }
}

/**
  Footer Section
*/
#footer {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 2rem 4rem;
}

.footer__logo {
  width: 150px;
}

.footer__right {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.social__item {
  padding: 0 0.5rem;
  margin-bottom: 1.25rem;
}

.social__item a {
  color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social__item i {
  color: var(--main-color);
  font-size: 1.2rem;
  margin-right: 0.2rem;
}

.social__item:hover a {
  color: white;
}

.footer__copyright {
  margin: auto;
  margin-top: 0.5rem;
  display: block;
  color: white;
}

@media (min-width: 768px) {
  .social__item {
    margin-bottom: 0;
  }

  #footer {
    flex-direction: row;
  }

  .footer__right {
    margin-top: auto;
    margin-bottom: auto;
  }

  .footer__copyright {
    margin-right: 0;
    margin-left: auto;
    margin-top: 0.5rem;
  }
}
