:root {
    --bg-color: #3535ec;
    --accent-color: #f70d68;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: 'Press Start 2P', cursive;

    line-height: 1.4;
    color: white;
}

.container {
    width: 600px;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 50px auto;
}

img {
    max-width: 100%;
}

ul {
    list-style-type: none;
}

li {
    margin-bottom: 16px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
}

/* struttura base pagine dei giochi non sono responsive*/

.board {
    display: flex;
    flex-direction: row;

}

.game-area {
    padding: 12px;

    position: relative;
}

.game-data {
    padding: 12px;
    width: 240px;
}

h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* ALERT */

.game-alert {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-alert-message {
    font-size: 40px;
    padding: 20px;
    
    background-color: var(--accent-color);
}