@author{Abdul Basit Azam};

*{
    margin: 0;
}
body{
    font-family:  "Fira Sans", sans-serif ;
}

h3{
    color: rgb(8, 194, 138);
}

header{
    position: fixed;
    width: 100%;
    height: 75px;
    justify-content: space-around;
    display: flex;
    background: linear-gradient(#bd1b97,#00d4ff);
    
}
header div ul{
    display: flex;
    margin-right: 50px;
}

header div ul li {
    list-style: none;
    margin-right: 10px;
    padding: 10px;
    border: 2px solid black;
    color: white;
}
header div ul li:hover{
    background:linear-gradient(90deg,#14ffe9, #ffeb3b, #ff00e0) ;
    animation: rotate 1.5s linear infinite;
    color: black;
}
.hpgs-pic{
    margin-top: 2px;
    height: 70px;
}
.slide{
    background-image: url("./hpgs-slide1-min.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 700px;
}           
.general{
    
    align-items: center;
    justify-content: center;
}
.general ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    
}
.general ul li{
    padding: 8px;
    list-style: none;
    width: 280px;
    margin: 15px;
    border: 2px solid black;
}
.general ul li h3{
    margin: 10px;
}


.events{
    width: 100%;
    height: 300px;
    background: linear-gradient(90deg ,yellow,#bd1b97,#00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
}
.events hr{
    background-color: pink;
    border:1px solid black;
    height: 3px;
    margin-top: -8px;
}





footer{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #24272C;
    color: whitesmoke;
    padding-top: 8px;
    
}
footer div hr{
    height: 2px;
    background-color: white;
}
footer div{
    padding-left: 6px;
    padding-right: 6px;
    width: 260px;
    height: 200px;
    border: #00d4ff 2px solid;
    margin: 6px;
    border-style:groove;
    margin-bottom: 15px;
}



@keyframes rotate{
    0%{
        filter: hue-rotate(0deg);
    }
    100%{
        filter: hue-rotate(360deg
        );
    }
}