body {
    background: rgb(255, 255, 255);
  }
  
  main {
    max-width: 32rem;
    padding: 2rem;
    margin: auto;
  }
  
  h1 {
    text-align: center;
    color: rgb(0, 0, 0);
  }
  
  #messageBox {
    text-align: center;
    color: rgb(0, 0, 0);
    border: 2px solid rgb(0, 0, 0);
    border-radius: 10px;
  }
  
  #difficulty {
    height: 65px;
    width: 140px; 
    border-radius: 10px; 
    font-size: 24px;
    background-color: rgb(0, 0, 0);
    color: #666;
    padding-left: 20px;
  }
  
  .controls {
    text-align: center;
  }
  
  .square {
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 35px;
    color: rgb(0, 0, 0);
  }
  
  .full {
    border-right: 5px solid rgb(0, 0, 0);
    border-left: 5px solid rgb(0, 0, 0);
    border-bottom: 5px solid rgb(0, 0, 0);
    border-top: 5px solid rgb(0, 0, 0);
  }
  
  /* Buttons */
  .button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #666;
    background-color: rgb(0, 0, 0);
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
  }
  
  .button:hover {background-color: rgb(0, 0, 0)}
  
  .button:active {
    background-color: rgb(0, 0, 0);
    box-shadow: 0 5px #666;
    transform: translateY(4px);
  }