body {
    text-align: center;
    height: 100vh;
    background-color:  #b2babb;
    font-family: Arial, sans-serif;
}

h1 {
  font-size:50px;
  color: #005bbb;
 }

.grid {
    background-color: #005bbb;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cell {
    width: 80px;
    height: 80px;
    background-color: #b2babb;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    
}

.cell[player="computer"] {
    background-color: red;
    box-shadow: inset 0 0 10px rgba(255, 0, 0, 0.7);
}

.cell[player="user"] {
    background-color: yellow;
    box-shadow: inset 0 0 10px rgba(255, 255, 0, 0.7);
}

.cell[win="computer"] {
    background-color: #8B0000;
    box-shadow: inset 0 0 10px rgba(255, 0, 0, 0.7);
}

.cell[win="user"] {
    background-color: orange;
    color: orange;
    box-shadow: inset 0 0 10px rgba(255, 255, 0, 0.7);
}

table {
  margin: auto;
  text-align: left;
}

#message {
 font-size:50px;
 color: #005bbb;
 p[win="computer"] {
     color: #8B0000;
 }
 p[win="user"] {
     color: green;
 }
 
}

.settings {
  background-color: #005bbb;
  color: white;
  padding: 10px;
  border: none;
  align-items: center;
  td {
    border: none;
  }
  input {
    text-align: right;
  }
  #start {
    color: blue;
    text-align: center;
    border-radius: 10%;
    border: 5px;
    display: block;
    margin: auto;
    font-size:20px;
    font-weight: bold;
  }
}
