body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

header {
    background-color: #fff;
    color: #000;
    padding: 10px 0;
    text-align: center;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: #000;
    text-decoration: none;
}

.hero {
    position: relative;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.featured-music {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
}

.music-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.music {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.music img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

audio {
    width: 100%;
    margin-top: 10px;
}

.featured-products {
    padding: 20px;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 20px; /* Optional: Adds some space below the heading */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Adjusts the space between products */
}

.product {
    text-align: center;
    padding: 0px;
    border: 0px solid #ddd;
    border-radius: 0px;
    background-color: #fff;
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}



footer {
    background-color: #fff;
    color: #000
    ;
    text-align: center;
    padding: 20px 0;
}
