@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');

body{
    background-repeat: repeat;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    margin: auto;
    overflow: auto;
    background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
    padding: 0;
    color: #fff;
}

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



.page{
    width: 100%;
    height: 100vh;
}
.container{
    width: 80%;
    max-width: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    position: absolute;
}

svg{
    width: 50%;
    max-width: 800px;
    margin: 2em;
}

p{
    font-size: 28px;
    margin: 0;
    padding: 0;
    margin-bottom: 0.3em;
}