/* Add Google Font */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background-color: #222;
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    padding-top: 50px;
}

h1 {
    font-size: 2em;
    color: #4CAF50; /* Green accent */
    text-shadow: 2px 2px #000000;
}

#pet-display {
    width: 128px;
    height: 128px;
    border: 4px solid #fff;
    margin: 20px auto;
    image-rendering: pixelated;
    background-color: #303030;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pet-display canvas {
    width: 64px;
    height: 64px;
}

#stats {
    margin-bottom: 20px;
}

button {
    font-family: 'Press Start 2P', cursive;
    background-color: #555;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 2px 2px #000000;
}

button:hover {
    background-color: #777;
}