@import url('https://fonts.googleapis.com/css?family=Dosis:700');


 body {
     background-color: #3D1952;
     font-family: Dosis, sans-serif;
     color: white;
     text-align: center;
     text-transform: uppercase;
     font-size: 150%;
     width: 490px;
     margin: 0 auto; 
 }
#game {

    border-top: 10px solid white;
    border-left: 10px solid white;

    overflow: auto;
}
#game > div {
    width: 150px;
    height: 150px;
    border-bottom: 10px solid white;
    border-right: 10px solid white;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    float:left;
    cursor: pointer;
}
#game > div.cross {
    background-image: url(images/cross.svg);
}
#game > div.nought {
    background-image: url(images/nought.svg);
}

#scores > div {
    width: 32%;
    float: left;
    margin-top: 20px;
}
#scores img {
    cursor: pointer;
}
#empat .empat {
    cursor: pointer;
}