main {
    background-color: #B4CFFA;
}
#title {
    text-align: center;
}
#grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 5px;
    max-width: 800px;
    margin: auto;
}
#Anim1 {
    grid-area: 1 / 1;
    align-items: center;
}
#Anim1 h3 {
    font-family: 'Bebas Neue',
    cursive;
    color: black;
    font-size: 2em;
}
#Anim1 p {
    font-family: 'Rajdhani',
    sans-serif;
    color: black;
    font-size: 1em;
    text-align: center;
}
#Anim2 {
    grid-area: 2 / 1;
}
#Anim2 h3 {
    font-family: 'Bebas Neue',
    cursive;
    color: black;
    font-size: 2em;
}

#Anim2 p {
    font-family: 'Rajdhani',
    sans-serif;
    color: black;
    font-size: 1em;
    text-align: center;
}
#Anim3 {
    grid-area: 1 / 2;
}
#Anim3 h3 {
    font-family: 'Bebas Neue',
    cursive;
    color: black;
    font-size: 2em;
}

#Anim3 p {
    font-family: 'Rajdhani',
    sans-serif;
    color: black;
    font-size: 1em;
    text-align: center;
}
#Anim4 {
    grid-area: 2 / 2;
}
#Anim4 h3 {
    font-family: 'Bebas Neue',
    cursive;
    color: black;
    font-size: 2em;
}

#Anim4 p {
    font-family: 'Rajdhani',
    sans-serif;
    color: black;
    font-size: 1em;
    text-align: center;
}
#walk {
    margin: auto;
    width: 400px;
    height: 400px;
    background: url("../img/RaccSPRITEVers3.png");
    animation: play 1s steps(12) infinite;
}

@keyframes play {
    from {
        background-position: 0px;
    }

    to {
        background-position: -4800px;
    }
}
#Anim1 img{
    width: 400px;
    padding: 1em 1em 1em 1em;
    border-radius: 1em;
    background: #2F5FAD;
}
#Anim2 #walk{
    width: 400px;
    padding: 1em 1em 1em 1em;
    border-radius: 1em;
}
#Anim4 img {
    width: 400px;
    padding: 1em 1em 1em 1em;
    border-radius: 1em;
    background: #2F5FAD;
}

#racctest {
    width: 400px;
}
#racctest svg {
    width: 108%;
    border-radius: 1em;
    background: #2F5FAD;
}
#title h1 {
    font-family: 'Bebas Neue',
    cursive;
    color: black;
    font-size: 3em;
}
#title h2 {
    font-family: 'Rajdhani',
    sans-serif;
    color: black;
    font-size: 2em;
}
/*
font-family: 'Bebas Neue',
cursive;
font-family: 'Rajdhani',
sans-serif;
*/