.container {
  
    height: 60vh;
    display: flex;
  
    justify-content: center;
    align-items: center;

  }
  .heading
  {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: none;
  }
  
  .heading h1
  {
    color: #ffffc7;

  }
  
  .game {
    height: 70vmin;
    width: 80vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
    z-index: 1;
  }
  
  .box {
    height: 20vmin;
    width: 20vmin;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    font-size: 8vmin;
    color: #b0413e;
    background-color: #ffffc7;
  }
  
  .boximg
  {
    height: 20vmin;
    width: 20vmin;
    border-radius: 1rem;
    overflow: hidden;
  }
  .boximg img
  {
    height: 100%;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
  }

  #reset-btn {
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    color: #fff;
    border-radius: 1rem;
    border: none;
  }
  
  #new-btn {
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    color: #fff;
    border-radius: 1rem;
    border: none;
  }
  
  #msg {
    color: #ffffc7;
    font-size: 5vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    flex-direction: column;
  }
  
  .msg-container {
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
  }
  
  .hide {
    display: none;
  }