<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box
}

body{
/*Color de fondo de la pÃ¡gina*/    
background: #000000;
}

.container {
    width: 300px;
    overflow: hidden;
    margin: 50px auto 0 auto;
}

.container span {
    width: 100%;
    display: block;
    text-align: center;
    font-family: sans-serif;
    font-size: 25px;
        
    /*Color del texto "cuadro comenzemos"*/
    color: #ff0000;
        
    /*Color de fondo del "cuadro jugar"*/
    background: #ff0000;
}

.container .box {
    float: left;
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    transition: all .25s ease-in-out;
    font-family: sans-serif;
    font-size: 85px;
    text-align: center;
    line-height: 100px;
    cursor: pointer;

    /*Color de las O y X*/
    color: #fff;

    /*Color de fondo de los cuadros*/
    background: #000000;
}

.container .box:hover {
    /*Color del cuadro al posicionar el cursor*/    
    background: #ffffff;
    
    /*Color del texto dentro del cuadro al posicionar el cursor*/
    color: #fff
}

button {
    /*Color del botÃ³n jugar de nuevo*/
    background: #8d047b;
    
    /*Color del texto dentro del botÃ³n*/
    color: #fff;

    border: none;    
    font-weight: bold;
    cursor: pointer;
    width: 200px;
    height: 40px;
    font-size: 22px;
    display: block;
    margin: 10px auto
}

button:hover{
    /*Color del botÃ³n al posicionar el cursor*/
    background: #db08bf;
}
</pre></body></html>