* {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Dancing Script', cursive;
}
.root {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: 300% 300%;
    background-image: linear-gradient(
            45deg,
            rgb(195, 0, 255) 0%,
            rgb(211, 208, 255) 25%,
            rgb(255, 255, 255) 51%,
            rgb(255, 255, 255) 100%
    );
    animation: AnimateBG 20s ease infinite;
}

@keyframes AnimateBG {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
h1 {
    font-size: 4rem;
    padding: 2rem;
    font-family: 'Press Start 2P', cursive;
}

p {
    font-size: 2rem;
    padding: 1.2rem;
}

a {
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 15px;
}

a:link {
    color: rgba(0, 0, 0, 0.808);
}
a:visited {
    color: rgb(58, 58, 58);
}
