body {
    margin: 0;
}

/* rotate the bg a bit so it looks more interesting */
body::before{
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 140vmax;
    height: 140vmax;

    background-color: #ea7b7b;
    background-image: url('/assets/gd_background.svg');
    background-size: 300px;
    background-repeat: repeat;

    transform: translate(-50%, -50%) rotate(7deg);
}
