body {
    height: 95vh;
    width: 95vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #1a1a1a;
    color: #ff4500;
    font-family: 'Press Start 2P', cursive;
    margin: 0;
    padding: 0;
}

h1 {
    padding: 10px;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    color: #ff4500;
    text-shadow: 2px 2px #000;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

canvas {
    border: 5px solid #00ff48;
    border-radius: 10px;
    box-shadow: 0 0 20px #ff4500;
    transition: box-shadow 0.3s;
}

canvas:active {
    box-shadow: 0 0 40px #ff4500;
}

.botao {
    background-color: #2fa617;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.botao:hover {
    background-color: #1a1a1a;
    color: #ff4500;
    border: 2px solid #ff4500;
}
