* {
    font-family: 'Nunito Sans';
    box-sizing: border-box;
  }
  
  body {
    margin: 0 auto;
    padding: 3px;
    background-color: rgb(255, 255, 255);
  }
  
  .game-container {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }
  
  header {
    display: flex;
    justify-content: center;
    color: #193155;
  }
  
  .rounds {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    color: #193155;
  }
  
  .round-label {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #193155;
  }
  
  .guess {
    min-width: 303px;
    height: 328px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    border-style: solid;
    border-color: #193155;
  }
  
  .guessing-area {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 20px;
    
  }
  
  .guess-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    color: #193155;
  }
  
  .guess-label {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
  }
  
  .score-label {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
  }
  
  .target-guess {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    border-style: solid;
    border-color: #193155;
    
  }
  
  .computer-guess {
    background-color: rgb(255, 255, 255);
  }
  
  #computer-guess {
    font-size: 50px;
    font-weight: 700;
    color: #193155;
  }
  
  .human-guess {
    border-radius: 10px;
    border-style: solid;
    border-color: #193155
  }
  
  .guess input {
    height: 90px;
    width: 90px;
    font-size: 30px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 5px;
    border-radius: 10px;
    border-style: solid;
    border-color: #193155;
    
  }
  
  .number-controls {
    font-size: 0;
    margin-bottom: 15px;
  }
  
  .number-control {
    border: solid 1px #193155;
    display: inline-block;
    width: 45px;
    height: 35px;
    font-size: 24px;
    font-weight: 700;
    color: #193155;
    cursor: pointer;
  }
  
  .number-controls button[disabled] {
    color: #193155;
    cursor: default;
  }
  
  .left {
    border-top-left-radius: 22.5px;
    border-bottom-left-radius: 22.5px;
  }
  
  .right {
    border-top-right-radius: 22.5px;
    border-bottom-right-radius: 22.5px;
    border-left-width: 0px;
  }
  
  .controls {
    display: flex;
    justify-content: space-around;
  }
  
  .button {
    background-color: #193155;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
  }
  
  #guess {
    padding: 20px;
    width: 169px;
    height: 59px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    color: rgb(255, 255, 255);
  }
  
  input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  
  #next-round {
    width: 179px;
    height: 64px;
    font-size: 18px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
  }
    
  .button[disabled] {
    background-color: #193155;
    color: #ffffff;
    cursor: default;
  }
  
  .instructions {
    background-color: rgb(255, 255, 255);
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-radius: 20px;
    border-style: solid;
    border-color: #193155;

  }
  
  .instruction {
    width: 180px;
    padding: 2px;
    text-align: center;
    color:#193155;
  }
  
  .instructions h3 {
    font-size: 14px;
    color: #193155;
  }
  
  
  .winning-text, .winning-text[disabled] {
    color: #193155;
    font-weight: 700;
  }