body{
    background: linear-gradient(Blue, Green);

}
h1{
    text-align: center;
    color: antiquewhite;
    font-size: 70px;
   background: linear-gradient(red, blue);
    border: 5px solid;
    width: 35%;
    margin: auto;
    margin-bottom: 99px;
}
h1:hover{
    text-align: center;
    color: black;
    font-size: 40px;
   background: linear-gradient(yellow, orange);
    border: 25px solid;
    width: 65%;
    margin: auto;
    margin-bottom: 15px;
}
#links{
    display: flex;
    justify-content: space-around;
    flex-flow: wrap;
    text-align: center;
    border-radius: 10px;
    border: 5px ;
    width: 30%;
    margin: auto;
}
a{
    background: linear-gradient(black, orange);
    margin: 10px;
    text-decoration: none;
    color: white;
    font-size: 25px;
}
a:hover{
    background: linear-gradient(orange, black);
}
p{
    margin: 1px;
}