

body {
    text-align: center;
    width: 100%;
    height: 100vh;
    border: 0px;
    background-color: #191919;
}

.nav {
   list-style: none;
   padding: 0;
   margin: 0;
}

.nav li {
   display: inline-block;
   margin-right: 20px;
}

.nav a {
   text-decoration: none;
   color: black;
   font-weight: bold;
}

.nav a:hover {
   color: blue;
}

h1 {
    display: inline-block;
font-family: "Special Gothic Expanded One", sans-serif;
   font-weight: 400;
   font-style: normal;
font-size: 70px;
margin: 0 auto;
color: #F8F8F8;
margin-left: 0 auto;
}

#artists h2 {
   font-family: "Special Gothic Expanded One", sans-serif;
   text-align: left;
   padding-left: 3rem;
   color: #F8F8F8;
   font-size: 40px;
   margin-bottom: 1rem;
}


.text-group {
   flex-direction: column;
   align-items: flex-start;
   justify-content: center;
   flex: 1;
}


a {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 20px;
    padding-left: 2rem;
    gap: 10px;
    color: #F8F8F8;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
    height: 60px;
    background-color:#191919;
   padding-bottom: 1rem;
   padding-top: 1rem;
}

.half-image {
   width: 50%;
   overflow: hidden;
   position: relative;
}

.intro {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 6rem;
   padding-left: 1rem;
   background-color: #191919;
}

/* Vinyl container */
.half-image {
   width: 250px;
   height: 500px;
   overflow: hidden;
   position: relative;
}
.controls {
   margin-top: 1rem;
}
.row {
   display: grid;
   justify-items: center;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
   font-size: 25px;
   padding: 3rem 9rem 5.94rem 3rem;
   font-weight: 900;
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
}
.img-wrapper {
   display: block;
   width: 100%;
}

.img-wrapper img {
   width: 100%;
   height: auto;
   display: block;
}
/* .row a img {
   width: 100%;
   height: auto;
   display: block;
   transition: transform 0.3s ease;
} */

/* .row a:hover img {
   transform: scale(1.05);
   Optional: slight zoom effect
   cursor: pointer;
} */

figcaption{
   font-family: "Special Gothic Expanded One", sans-serif;
   font-size: 16px;
      font-weight: bold;
      color: #333;
      text-align: left;
         color: #F8F8F8;
}

.name{
   padding-top: 1rem;
font-family: "Poppins", sans-serif;
}

.genre{
      padding-top: .5rem;
   font-size: 11px;
   font-family: "Poppins", sans-serif;
}

#genres {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
   padding: 3rem;
   max-width: 1200px;
   margin: 0 auto;
}


#genres p{
   font-family: "Poppins", sans-serif;
   font-weight: 600;
   text-align: center;
   align-content: center;
   align-self: center;

   align-items: center;
}
#genres a {
   text-decoration: none;
   color: inherit;
   display: block;
   width: 100%;
   height: 100%;
}

#genres div {
   background-color: white;
   padding: 1rem;
   height: 120px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   box-sizing: border-box;
   border-radius: 5px;
   transition: background-color 0.3s, transform 0.2s;
}

/* Hover effect */
#genres div:hover {
   background-color: #e0e0e0;
   transform: scale(1.03);
   cursor: pointer;
}
button {
   background-color: #444;
   border: none;
   border-radius: 10%;
   width: 40px;
   height: 40px;
   font-size: 24px;
   color: white;
   cursor: pointer;
   align-items: left;
   /* justify-content: left; */
   margin-right: 1rem;

   /* transition: background-color 0.2s; */
}

button:hover {
   background-color: #666;
}

/* Spinning vinyl image */
#spinning-image {
   width: 500px;
   /* Full image width */
   height: 500px;
   position: absolute;
   left: 0;
   /* Keep the left side in view */

}
.spin{
      animation: spin 3s linear infinite;
}


@keyframes spin {
   from {
      transform: rotate(0deg);
   }

   to {
      transform: rotate(360deg);
   }
   
}
