@keyframes animationthank{
    0%{color:violet;}
    10%{color:indigo;}
    20%{color:blue;}
    30%{color:green;}
    40%{color:yellow;}
    50%{color:orange;}
    60%{color:orangered;}
    70%{color:red;}
    80%{color:aqua;}
    90%{color:brown;}
    95%{color:darkcyan}
    100%{color:white;}
}
body{
    background-color: #3f3c3c;
    border:10px solid rgb(178, 196, 17);
    border-radius: 40px;
}
a{
    text-decoration: none;
    color:whitesmoke; 
}
.navbar{
    height:85px;
    background-color: black;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;  
    display:flex;
    align-items: center;
    justify-content:space-evenly;
    color:whitesmoke;
    border-bottom: 4px solid rgb(178, 196, 17);
    border-left: 2px solid rgb(178, 196, 17);
    border-right: 2px solid rgb(178, 196, 17);
}
body:hover .navbar{
    border-bottom: 4px solid #DC851F;
    border-left: 2px solid #DC851F;
    border-right: 2px solid #DC851F;
}
#headerp1{
    position: relative;
    top:4.5px;
}
.navpageops p{
    display:inline;
    margin-left:100px;
    font-size: 1.2rem;
}
.pageops:hover{
    background-color: #DC851F;
    color:black;
    border-radius: 15px;
    padding: 0.3rem;
    font-size: 1.5rem;
    transition: margin-right 2s, color 1s;
}
/* space after header */
.space{
    height:80px;
}
body:hover{
    background-color: #45462A;
    border:15px solid #DC851F;
    border-radius: 50px;
}
.haq{
    color:rgb(178, 196, 17);
    font-size: 30px;
}
.haq:hover{
    color:#DC851F; 
    rotate:360deg;
    transition:
    width 2s,
    height 2s,
    background-color 2s,
    rotate 2s;
}
.aqt{
    color:rgb(178, 196, 17);
}
.aqt:hover{
    color:#FFA737;
    font-size: larger;
    font-weight:800px;
    
}
.aqt:hover big{
        font-size:larger;
        -webkit-text-stroke: 1px red;
        -webkit-text-fill-color: #FFA737;
}
.aqte{
    color:rgb(178, 196, 17);
}
.aqte a{
    color:rgb(178, 196, 17);
}
.aqte:hover{
    color:#FFA737;
    font-weight:800px;

}
.aqte:hover big{
    font-size:larger;
    -webkit-text-stroke: 1px red;
    -webkit-text-fill-color: #FFA737;
}
.thank{
height:100px;
color:aliceblue;
font-size:50px;
font-weight:bolder;
align-items: center;
justify-content:center;
display:flex;
animation: animationthank 10s linear 2s infinite;
}