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

body {
    background-color: rgb(230, 230, 230);
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Player form style */
form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 150px;
    border: 2px dotted #53536a;
    border-radius: 5px;
    padding: 10px;
}

form > .player_info {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: center;
    padding: 10px;
}

form div > input {
    padding: 2px 10px;
    border: 1.5px dotted #53536a;
    border-radius: 3px;
    width: 100%;
    margin-top: 10px;
    outline: none;
}

form > button {
    width: 50%;
    height: 2em;
    border: 2px dotted #53536a;
    border-radius: 5px;
    font-weight: bold;
    &:hover {
        background-color: rgb(0, 0, 0);
        color: white;
        border: none;
    }
}

/* Game tiles styles */
.game_container{
    display: none;
    /* border: 1px solid; */
    width: 400px;
    height: 400px;
    grid-template-columns: repeat(auto-fit, minmax(calc(400px/calc(1/3*9)), 1fr));
    /* gap: 10px; */
}

.game_tiles {
    background-color: aqua;
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
}

/* for mobiles */