p:not(.footer-c) {
  margin: 0.5rem;
  text-align: center;
}
p:first-child {
  margin-top: 15px;
}

#resume {
  display: none;
}

.time {
  font-weight: 20px;
}
.time .minutes, .time .seconds {
  margin: 0 -2px;
}
.time .colon {
  position: relative;
  bottom: 1px;
  margin: 0 -2px;
}

.adjust {
  width: 400px;
  margin: auto;
  text-align: center;
}
.adjust .difficulty {
  width: 150px;
}

.immutable {
  font-weight: bold;
}

.numbers-bar {    
   margin-left: 25px;*
}
.numbers-bar{  
  
  box-sizing: content-box;
  font-size: 20px;
  text-align: center;
  width: 355px;
} 

.number {
  background-color: #ffddbb;
  float: left;
  border: 1px solid #000;
  height: 35px;
  width: 35px;
  box-sizing: content-box;
  font-size: 25px;
  text-align: center;
}
.numbers-bar .number:nth-child(3), .numbers-bar .number:nth-child(6) {
  margin-right: 3px;
}
.numbers-bar .number:hover {
  background-color: #BBDDFF;
}

.sudoku {
  width: 415px;  
   margin-left:10px;
}
.sudoku .square {
  float: left;
  border: 1px solid #000;
}
.sudoku .square .cell {
  float: left;
  position: relative;
  height:35px;
  width: 35px;
  background: #fff;
  border: 1px solid #000;
  box-sizing: content-box;
}
.sudoku .square .cell:hover {
  background-color: #BBDDFF;
}
.sudoku .square .cell:hover .label {
  color: #333;
}
.sudoku .square .cell.selected {
  background-color: #76A8FF;
}
.sudoku .square .cell.selected .label {
  color: #333;
}
.sudoku .square .cell.error {
  background-color: #E58080;
}
.sudoku .square .cell.valid {
  background-color: #95E595;
}
.sudoku .square .cell .label {
  position: absolute;
  color: #aaa;
  top: 1px;
  left: 2px;
  font-size: 8px;
}
.sudoku .square .cell .value {
  display: block;
  font-size: 30px;
  color: #000;
  width: 100%;
  height: 100%;
  text-align: center;
}
.sudoku .square .cell:nth-child(3n+1) {
  clear: both;
}

.footer {
    color: white;
    font-size: 16px;
    background-color: #34495e;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 10px;
    border-radius: 5px;
    margin-top:80px;
}