.hero {
    background: url('../images/hero.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 9rem;
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
        padding: 0 5%;
    }

    .hero .container {
        text-align: center;
    }

    .hero-title {
        font-size: 5rem;
    }
}

.music-card {
    position: relative;
    overflow: hidden;
    height: 250px;
    transition: transform 0.2s ease-in-out;
}

.music-card:hover {
    transform: scale(1.05);
}

.music-card-background {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.music-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    opacity: 0.3;
}

.music-card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.music-card-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 5px;
    opacity: 0.7;
}

.music-card-text {
    opacity: 0.8;
    margin-bottom: 10px;
}
