body{
    margin:0%;
    width:100%;
    height:100vh;
    font-family:"Exo",sans-serif;
    color: aliceblue;
    background: linear-gradient(-45deg,pink,gold,blue,red,green, yellow);
    background-size:400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}

h1{
    font-weight: 300;
}

h3{
    color: maroon;
}

h5{
    color: silver;
    font-weight: 300;
}

a,
a:hover{
    text-decoration: solid;
}
