@import url('https://fonts.googleapis.com/css?family=PT+Sans');
body{
    margin:0;
    background-color: #252529;
    color:#fff;
    font-family: 'PT sans',sans-serif;
}
.container{
    width: 80%;
    margin:auto;
    overflow: hidden;
}
nav{
    margin-top:1rem;
    margin-bottom:0.5rem;
}
nav a{
    padding-inline-start: 1rem;
    padding-inline-end: 1rem;
    text-decoration: none;
    color:#ccc;
}
nav a:hover{
    padding:1rem;
    background-color: #414144;
    color: #fff;
}
#overview{
    margin:0;
    padding:0;
    background-image: url('https://mewallpaper.com/thumbnail/abstract/6262-guitarist-black-background-free-transparent-image-hq.jpg') ;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow-y: hidden;
    text-align: center;
}
#overview h1{
    margin-top: 10rem;
    font-size:60px;
    font-weight: 600;
}
#overview h3{
    font-size: 30px;
    margin-bottom: 3rem;
}
#overview p{
    font-size: 18px;
    font-weight: 400;
}
#music{
    text-align: center;
}
#music h2{
    font-size: 45px;
}
#music h3{
    font-size: 35px;
}
#music h5{
    font-size: 20px;
    font-weight: 500;
}
#music a{
    text-decoration: none;
    color: #fff;
    background-color: #b90415;
    padding:1rem;
}
#music a:hover{
    background-color: #d3071b;
}
#music p{
    margin-top: 3rem;
}
#video{
    background-color:#f4f4f4;
    color:#333;
    text-align: center;
}
#video h2{
    margin-top: 4rem;
    font-size: 35px;
}
#video p{
    font-size: 20px;
    font-weight: 500;
}
#video a{
    text-decoration: none;
    color:#fff;
    padding:1rem;
    background-color: #103063;
}
#video a:hover{
    background-color: #143f85;
}
#video img{
    margin-top: 1rem;
    margin-bottom: 2rem;
}
#entertainment{
    margin:0;
    padding:0;
    opacity: 0.9;
    background-image: url('https://i.pinimg.com/originals/51/f8/f5/51f8f53b6cab32db3810bc396c280158.jpg');
    height: 80vh;
    width: 100%;
    background-size: cover;
    text-align: center;
}
#entertainment h2{
    font-size: 40px;
    margin-top: 12rem;
}
#entertainment p{
    font-size: 25px;
}
#giftcards{
    background-color: rgb(248, 248, 248);
    color:#252529;
}
.gc{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#giftcards h3{
    font-size: 25px;
}
#giftcards a{
    text-decoration: none;
    color: rgb(8, 8, 197);
    font-weight: 500;
}
#img-gc, #text-gc{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
#line{
    padding-bottom: 1.5rem;
    border-bottom: 1px rgb(109, 108, 108) solid;
}
#bottom{
    text-align: left;
    margin-bottom: 1rem;
}
.li{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
}
.li ul li:first-child{
    font-size: 20px;
    font-weight: 400;
    margin-top: 3rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px #444 solid;
}
.li ul li{
    list-style: none;
}
.li ul li a{
    text-decoration:none;
    color:rgb(187, 187, 187);
    font-size: 14px;
}
footer{
    background-color: #333;
    padding:0.5rem;
    text-align: center;
}
@media(max-width : 700px){
    #entertainment{
        background-size: cover;
    }
    #entertainment h2{
        margin-top: 5rem;
    }
    .gc{
        display: inline;
    }
}