@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
body{
    margin: 0;
    display: grid;
    place-self: center;
    height: 100vh;
    width: 100vw;
    font-family: 'Roboto Mono', monospace;
}

.gameTitle{
    font-size: 2.5rem;
    font-weight: 900;
    display: grid;
    place-self: center;
}

.gameBoard{
    display: flex;
    justify-content: center;
    align-items: center;


}

.game{

    grid-column: 2 / 4;
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(3, 20vh);
    grid-template-rows: repeat(3, 20vh);
}

.game div{
    user-select: none;
    font-size: calc(10vh);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-color: rgb(223, 240, 255);
}

.game div:hover, .start-btn:hover{
    background-color: rgb(65, 72, 78);
}


.footer{
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: end;
    align-items: center;
    width: 100%;
    padding-bottom: 15px;
    flex-grow: 0;
}

.footer a{
    text-decoration: none;
    color: white;
    text-shadow: 0 0 10px black;
}

.footer a:hover{
    color: rgb(169, 169, 169)
}


.no-display{
    display: none;
}

.start-screen{
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
}

.start-btn{
    user-select: none;
    color: white;
    background-color: black;
    border-radius: 4px;
    padding: 15px;
}

.menu-items{
    gap: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}

input{
    border-radius: 5px;
    height: 30px;
    text-align: center;
    border: none;
}
input:focus{
    outline: none;
}

.invalid-border{
    border: rgb(255, 107, 107) 1px solid;
}

.player-display{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    
}

.player1-display, .player2-display{
    font-size: 2rem;
    font-weight: bold;
}

.currentplayer{
    font-size: 2.2rem;
    color: red;
}