@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Shadows Into Light', cursive;
}

body{
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(rgb(237, 237, 237),rgb(143, 143, 143));
    user-select: none;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container h1{
    text-transform: uppercase;
    font-size: 2.5em;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.306);
    padding-bottom: 5px;
}

table{
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.495);
}

td{
    background-color: black;
    width: 150px;
    height: 150px;
}

.btnJogo{
    margin: 0 auto;
    background-color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 145px;
    color: white;
    text-shadow: 4px 5px 4px rgba(0, 0, 0, 0.66);
    cursor: pointer;
    height: 145px;
    transition: all ease .2s;
    font-size: 4em;
    text-transform: uppercase;
    font-style: italic;
}

.player1{
    background-color: blue;
}

.player2{
    background-color: red;
}

.btnJogo:hover{
    transform: scale(1.2);
    border: 4px solid black;
}

.resetButton{
    margin-top: 20px;
    width: 150px;
    height: 60px;
    border-radius: 30px;
    border: none;
    font-size: 2em;
    background-color: rgb(0, 219, 0);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.212);
    transition: all ease .2s;
}

.resetButton:hover{
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.441);
    background-color: rgb(24, 255, 24);
}