*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    min-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;

    overflow: hidden;
    
    color: #fff;
}

.container {
    width: 100vw;
    height: 100vh;
    
    background-color: rgb(20, 20, 27);

    display: flex;
    flex-direction: column;

    
    position: relative;

    justify-content: center;
    
}


.container-game{
    width: 100%;
    
    margin: 15px;
    padding: 5px;

    display: flex;

    justify-content: center;
}

.game{
    width: 100%;
   
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    
}
