body {
    font-family: "Lato", sans-serif;
    text-align: center;
}
.button {
  align-items: center;
  background-color: #0A66C2;
  border: 0;
  border-radius: 30px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: Arial;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 500px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}
.button:hover { 
  background-color: #16437E;
  color: #ffffff;
}
main {
    display: flex;
    justify-content: center;
}

section {
    text-align: center;
    padding: 30px;
    background: #e5eaf5c0;
}

#field {
    padding: 30px;
}
#container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 306px;
    margin: auto;
}
.cell {
    font-family: "Finger Paint", sans-serif;
    color: #232d55;
    width: 100px;
    height: 100px;
    box-shadow: 0 0 0 1px #6e92a3;
    border: 1px solid #6e92a3;
    cursor: pointer;
    line-height: 100px;
    font-size: 60px;
    background: #a0d2eb;
}

#sidebar {
    width: 125px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#player {
    flex: 1;
}
#turns {
    flex: 1;
}
#status {
    flex: 4;
}
#restart {
    flex: 1;
}

#player1,
#player2 {
    box-sizing: border-box;
    background: #d0bdf4;
    border-radius: 4px;
    padding: 10px 0;
    margin: 0 0 10px 0;
}

#titleTurns {
    font-size: 0.8em;
}
#numberTurns {
    font-size: 1.4em;
    margin: 0;
}