html {
    width: 100%;
    height: 100%;
}
body {
    background-image: linear-gradient(to bottom right, red, blue);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    letter-spacing: 5px;
    overflow: hidden;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0px;
    text-transform: uppercase;
}
p {
    margin: 0px;
    padding: 0px;
    text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;
}
.evil {
    color: rgb(230, 98, 98);
}

.game-buttons {
    color: rgb(182, 169, 255);
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

button {
    background: rgba(10,0,0,0.5);
    text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;
    padding: 20px;
    font-size: 1em;
    min-height: 100px;
    color: rgb(243, 112, 112);
    border-radius: 20px;
    border: none;
    transition: all 300ms ease-in-out;
    margin: 20px;
    width: 200px;
}

button:hover {
    background: rgba(42, 56, 179,0);
    color: rgb(133, 135, 241);
    box-shadow: 0 0 20px 1px black;
}
.pacman {
    transition: width 300ms ease, opacity 600ms ease, filter 300ms ease, transform 600ms ease;
}
.pacDeath {
    width: 200;
    opacity: 0;
    transform: rotate(280deg);
    filter: saturate(200%) hue-rotate(180deg)
}