.hero {
    height: 100vh; /* Full screen height */
    width: 100%;
    /* Add your background image here */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('gina wallpaper.jpeg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: end;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem; /* Massive typography */
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}


.btn-primary:hover {
    background-color: white;
    color: black;
}

/*content section*/

.music-section{
    padding: 70px 0 ;
}
.music-section h2{
    color:white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    margin:64px 0;
    padding: 6px 23px;

}
.music-pic{
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0
}
.music-pic img{
    height: 520px;
    width:500px
}
.music-title{
    color:white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-top: 20px;
}
.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
}
.more-releases{
    display: flex;
    align-items: center;
    justify-content: center;
}
.more-releases a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    padding: 15px 40px;
    border: 2px solid orange;
    color: orange;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 16px;
}
.more-releases a:hover{
    color:white;
    background-color: orange;
}

/*video section*/
.video-section{
    font-size: 16px;
    margin-top: 20px;
}
.video-section h2{
    font-size: 64px;
    margin: 64px 0;
    padding: 5.6px 23px;
    color:white;
    display:flex;
    align-items: center;
    justify-content: center;
}
.video-clip{
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .video-section{
        font-size: 20px;
        padding-top: 5px;
        margin-left: 10%;
    }
    .video-clip iframe{
        width: 100%;
        margin-left: -40px;
    }
    .music-pic img{
        width: 100%;
    }
    
    
}