/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    /* background: linear-gradient(271deg, rgb(197, 125, 255), rgb(98, 0, 255)); */

    background: linear-gradient(
        325deg  ,
        hsl(150, 100%, 80%),
        hsl(180, 100%, 80%),
        hsl(210, 100%, 80%),
        hsl(240, 100%, 80%),
        hsl(270, 100%, 80%),
        hsl(300, 100%, 80%),
        hsl(330, 100%, 80%),
        hsl(0, 100%, 80%),
        hsl(30, 100%, 80%),
        hsl(60, 100%, 80%),
        hsl(90, 100%, 80%),
        hsl(120, 100%, 80%)
    );
    background-size: 400% 400%;

    -webkit-animation: BackgroundAnimation 60s ease infinite;
    -moz-animation: BackgroundAnimation 60s ease infinite;
    animation: BackgroundAnimation 60s ease infinite;

    color: black;
    font-family: Verdana, serif;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

@-webkit-keyframes BackgroundAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@-moz-keyframes BackgroundAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes BackgroundAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
