body {

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

}

info {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 10vh;
    width: 96vw;
    background-color: #f0f0f0;
    position: relative;
}

game {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    width: 96vw;
    background-color: #f0f0f0;
    position: relative;
}

dot {
    /* transform: translate(0,0); */
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
}

.modal-outer{
    position: fixed;
    width: 100%;
    height:100%;
    visibility: hidden;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal {
    width: 25vw;
    height: 30svh;
    position: fixed;
    background-color: #f0f0f0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    border: 2px solid black;
}

.inner{
    position: fixed;
    min-width: 25vw;
    min-height: 25svh;
    font-size: 50px;
    text-align: center;
}

.close{
    width: 10vw;
    height: 5vh;
    z-index: 100;
    position: fixed;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -95%);
    border-radius: 10px;
    border: 2px solid black;
}

.start{
    background-color: rgb(22, 196, 127);
    border-radius: 10px;
    border: 2px solid black;
    width: 10vw;
    height: 5vh;
}

.start:hover{
    background-color: rgb(25, 177, 116);
}

.start:active{
    background-color: rgb(22, 196, 127);
    transform: translateY(4px);
}