* {
    margin: auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: rgb(65, 4, 65);
    width: 100vw;
    height: 100vh;
}

#texto{
    margin-top: 1em;
    align-content: center;
    font-size: 30px;
    color: white;
    text-shadow: 1px 2px 5px black;
    line-height: 2em;
    background-color: rgb(83, 49, 124);
    width: 13em;
    height: 3em;
    border-radius: 5px;
}

#reiniciar{
    color: white;
    background-color: rgb(85, 88, 130);
    box-shadow: 3px 2px 0px rgb(66, 68, 102);
    border-radius: 25px;
    height: 5em;
    width: 10em;
}

#tablero {
    margin-top: 1em;
    background-color: rgb(132, 10, 132);
    border: solid rgb(98, 8, 98) 7px;
    border-radius: 25px;
    width: 50%;
    height: 75%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.casilla {
    background-color: rgb(65, 4, 65);
    border-radius: 50px;
    height: 85%;
    width: 85%;
    box-shadow: 0px 6px 0px rgb(103, 8, 103);
}


#btnContainer {
    margin-top: 10px;
    height: 45px;
    width: 49%;
    display: flex;
}

.boton {
    background-color: rgb(132, 10, 132);
    box-shadow: 3px 2px 0px rgb(93, 8, 93);
    border-radius: 25px;
    height: 100%;
    width: 45px;
}

.boton:hover {
    background-color: rgb(149, 13, 149);
    cursor: pointer;
    transition: 0.3s;
}

.boton:active{
    background-color: rgb(128, 11, 128);
    translate: 3px 2px;
    box-shadow: none;
}
