body {
    background-color: rgba(2, 33, 15, 0.41);
    font-size: 50%;
}
p {
    font-family: 'Overlock SC', cursive;
    font-size: 10vmin;
    text-align: center;
    color:rgba(7, 133, 255, 0.97);
}
div#container {
    overflow: hidden;
}
div.sideways {
    position:relative;
    animation-delay: 10s;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-name: lateralmove;
    
}
h1 {
    font-family: 'Faster One', cursive;
    font-size: 20vmin;
    text-align: center;
    color:#02210f;
}
@keyframes lateralmove
{
    0% {left: 0%;}
    25% {left: -100%;}
    50% {left: 0%;}
    75% {left: 100%;}
    100% {left: 0%;}
}