body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .game-board {
    margin-top: 20px;
  }

  .game-board .row{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .color-square {
    width:18vh;
    height:18vh;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
  }

  .color-square:hover{
    border: 2px solid;
    padding: 10px;
    box-shadow: 6px 4px 8px;
    overflow: hidden; 
  }
  
  #colorCodeTitle {
    font-weight: bolder;
  }

  #colorCode {
    color:darkred;
    font-weight: bolder;
  }

  input, button {
    font-size: 16px;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  button {
    background-color: yellow;
    color: rgb(57, 38, 3);
    cursor: pointer;
    font-size: 28px;
    font-weight: bolder;
    font-family: Georgia, Times, 'Times New Roman', serif;
  }
  
  #resultMsg {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 28px;
    font-weight: bolder;
  }