* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: serif;
}

body {
  overflow-x: hidden;
}
#content_wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

#background {
  min-height: 100%;
  width: 100%;
  background-image: url(/images/concert-images/silhouette-woman-singing-green-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}

/* -----
nav
----- */

.content {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

header {
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  padding: 5px;
}

nav ul {
  display: flex;
  justify-content: flex-end;
}

nav li {
  padding: 0 40px;
}

nav li:hover {
  text-decoration: underline;
  color: white;
}
header,
header a,
nav,
header nav ul li a,
#description {
  color: white;
  font-size: 1.1rem;
}

header .logo,
header .btns {
  padding: 10px;
}

header .fa-solid {
  display: none;
}

.btns a button {
  border: none;
  background-color: transparent;
  color: white;
  font-size: 1.2rem;
}

/*-----
content 1
-------  */

#description {
  font-size: 1.4rem;
  height: 100px;
  width: 180px;
  text-align: center;
  margin: 0 auto;
  transform: translateY(290px);
}

#title {
  display: flex;
  position: relative;
  color: white;
  font-size: clamp(2rem, 15vw, 13rem);
  text-align: center;
  transform: translateY(390px);
  width: 95%;
  margin: 0 auto;
}

#title span {
  animation: slideIn 0.6s linear forwards;
  opacity: 0;
}

#title span:nth-child(2) {
  animation-delay: 0.1s;
}
#title span:nth-child(3) {
  animation-delay: 0.3s;
}
#title span:nth-child(4) {
  animation-delay: 0.5s;
}
#title span:nth-child(5) {
  animation-delay: 0.7s;
}
#title span:nth-child(6) {
  animation-delay: 0.9s;
}
#title span:nth-child(7) {
  animation-delay: 1.4s;
}
#title span:nth-child(8) {
  animation-delay: 1.6s;
}
#title span:nth-child(9) {
  animation-delay: 1.8s;
}
#title span:nth-child(10) {
  animation-delay: 2s;
}
#title span:nth-child(11) {
  animation-delay: 2.2s;
}
#title span:nth-child(12) {
  animation-delay: 2.4s;
}

@keyframes slideIn {
  0% {
    transform: translateY(200px);
  }

  50% {
    transform: translateY(100px);
    opacity: 0.7;
  }

  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

/*------ 
content2 
-------*/
.content-wrapper-2 {
  height: 100vh;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}

.genre-ul {
  padding: 20px;
}

.genre-ul ul {
  text-align: center;
  margin-top: 50px;
}

.genre-ul li {
  color: rgb(136, 139, 141);
  font-size: clamp(22px, 2.5vw, 32px);
  cursor: pointer;
  margin: 0 0 40px 0;
}

.genre-ul ul li:hover {
  animation: colorBlack 0.7s linear forwards;
}

.image-container-1,
.image-container-2 {
  gap: 120px;
  padding: 20px;
  height: 100vh;
}

.image-container-1 img,
.image-container-2 img {
  height: clamp(75px, 20vw, 150px);
  width: clamp(75px, 20vw, 150px);
  display: flex;
  margin: 0 auto;
}

.album-image.hidden {
  pointer-events: none;
  visibility: hidden;
}

.album-image.show {
  visibility: visible;
}

@keyframes colorBlack {
  0% {
    color: rgb(136, 139, 141);
  }

  100% {
    color: black;
  }
}

/*------ 
content3 
-------*/

.content-wrapper-3 {
  min-height: 100%;
  width: 100%;
  margin-top: 10px;
}

.content-wrapper-3 img {
  height: 100%;
  width: 100%;
}

/*------ 
content4 
-------*/

.content-wrapper-4 {
  min-height: 100vh;
  width: 100%;
  margin-bottom: 5px;
}

#intro {
  font-size: clamp(16px, 10vw, 18px);
  text-align: center;
  margin-top: 10px;
}

.welcome-section {
  text-align: center;
  width: clamp(370px, 40vw, 475px);
  margin: 200px auto 0 auto;
  padding: 5px;
}

.welcome-section p {
  margin: 20px 0;
}

.welcome-section p:nth-child(1) {
  font-size: clamp(0.9rem, 8vw, 1.2rem);
}
.welcome-section p:nth-child(2) {
  font-size: 0.9rem;
  font-size: clamp(0.7rem, 5vw, 0.9rem);
  color: rgb(73, 74, 73);
}

.welcome-section button {
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}

.vinyl-container {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto 0 auto;
  gap: 10px;
  width: 90%;
  justify-content: center;
}

.vinyl {
  height: 360px;
  width: 275px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  overflow: hidden;
}

.vinyl img {
  height: 250px;
  width: 250px;
}

.vinyl p {
  margin: 10px 0;
  color: black;
}

.vinyl p:nth-child(2) {
  font-size: clamp(0.9rem, 10vw, 1.1rem);
}

.vinyl p:nth-child(3) {
  color: grey;
  font-size: clamp(0.7rem, 10vw, 0.8rem);
}

.vinyl p:nth-child(4) {
  font-size: clamp(0.7rem, 10vw, 0.8rem);
}

/*------ 
content5 
-------*/
.content-wrapper-5 {
  min-height: 100%;
  width: 100%;
}

.content-wrapper-5 img {
  height: 100%;
  width: 100%;
}

@media (max-width: 480px) {
  #title {
    transform: translateY(450px);
  }

  .content-wrapper-2 {
    margin-top: 13%;
  }
}

@media (min-width: 315px) and (max-width: 414px) {
  .vinyl {
    height: 280px;
    width: 170px;
  }

  .vinyl img {
    height: 150px;
    width: 150px;
  }
}

@media (min-width: 415px) and (max-width: 768px) {
  #title {
    transform: translateY(500px);
  }

  .vinyl {
    height: 310px;
    width: 215px;
  }

  .vinyl img {
    height: 190px;
    width: 190px;
  }
}

@media (max-width: 992px) {
  nav {
    position: absolute;
    width: 100%;
    top: 65px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    left: -100%;
    transition: 0.8s ease-in-out;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    display: block;
  }

  nav li {
    margin: 15px;
  }

  header .fa-bars {
    display: inline-block;
  }

  header .fa-x {
    display: block;
    margin-left: auto;
  }

  header .fa-solid {
    cursor: pointer;
  }
}
