@charset "UTF-8";

* {
    font-family: sans-serif;
}

body {
    background-color: white;
}

nav {
    display: flex;
    width: 100px;
}

nav > button#bt_volta {
    background-color: blue;
    color: white;

    border: none;
    border-radius: 10px;

    padding: 10px;

    cursor: pointer;

    justify-self: flex-start;
}

p {
    background-color: #f5f5f7;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.237);
    height: 50px;
    width: 500px;
    border-radius: 10px;
    justify-self: center;
}

canvas {
    border: none;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.331);
    background-color: white;
}

.game-container {
    text-align: center;
    font-family: Arial, sans-serif;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    background-color: rgb(81, 0, 255);
    color: white;
    border: none;
    border-radius: 10px;
    justify-self: center;
}