*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, 
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.4;
}

button{
    padding: 15px 20px;
    border: none;
    transition: 0.2s ease-in-out;
    width: auto;
    background-color: #46B2E0;
    border-radius: 6px;
}
button:hover{
    transition: 0.2s ease-in-out;
    
    cursor: pointer;
   
}



/* nav bar style */


ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: white;
}

.container{
   max-width: 1200px; 
   margin: 0 auto;
}

header{
    background-color: #242B2E;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 2px 2px 10px  rgb(66, 66, 67);
}

nav{
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    padding: 10px;
}

.logo{
    font-size: 25px;font-weight: 500;
    position: relative;
    left: -97px;

}

.fa{
    padding-right: 8px;
}

nav ul{
    display: flex;
    gap: 20px;
}

nav ul li{
    border-bottom: 2px solid transparent;
    transition: 0.3s ease-in;
}

nav ul li:hover{
border-bottom: 2px solid;
}

/* main
section A */

.hero-section{
    color: white;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/wepik-creative-art-history-general-presentation-2022613-152957.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: lighten;
    background-position: bottom;
    

    height: 100vh;
    display: grid;
    text-align: center;
    place-items: center;
    

}

.hero-section .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-section h1{
    font-size: 96px;
}

.hero-section h3{
    font-size: 30px;
}

h1{
    transition: 0.5s;
    letter-spacing: 18px;
}

h1:hover{
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}



/* music section */

h2{
    font-size: 30px;
}

.music-section{
    padding-top: 50px;
    background-color: #03203C;


}

.music-section .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.ipad-img{
    margin-top: -400px;
    position: relative;
    top: 400px;
}

.primary-btn{
    background-color: #5DA3FA;
    color: white;
    font-size: 20px;

}



/* section 3

about music */

.music-section{
    color: #fff;
}

.about-music{
    padding-top: 500px;
    display: grid;
    place-items: center;
    text-align: center;
    margin-bottom: 50px;
    gap: 50px;
    

}

.about-music h4{
    padding: 10px 50px;
}


/* section 3

video section*/

.video-section{
    background-image: url(img/video.png);
    min-height: 800px;
    display: grid;
    place-items: centre;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    align-items: center;
    
    
}

.video-section .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -20px;
}


/* section 4


gift section*/

.gift-section{
    display: flex;
    justify-content: center;

    margin: 100px 0;
    gap: 50px;


}

.gift-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* section 4

footer*/

.footer-upper{
    background-color: #242B2E;
    padding: 15px;
    font-size: smaller;
}

.footer-upper .container{
    display: flex;
    color: rgba(255, 255, 255, 0.423);
    justify-content: space-between;
}

.footer-upper h4{
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.568);
    margin-bottom: 5px;

}

.footer-lower {
    background-color: #242B2E;
    padding: 5px;
    display: flex;
    justify-content: center;
    column-rule-color: white;
    font-size: smaller;

}
