/* deploy every significant change!! */
#external-container {
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
   
}   

#internal-container {
    margin-top: 3em;
    text-align: left;
    font-weight:lighter;
    max-width: 100%;
}

h2 {
        color: currentColor;
        font-size: 1.5em;
        margin-top: 0px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    color: pink;
}
  
  #board {
    display: grid;
    grid-template-columns: 100px 100px 100px;
    grid-template-rows: 100px 100px 100px;
    cursor: pointer;
    position: relative;
  }
  
  .tiles {
    color: currentColor;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.2em solid pink;
    background-color: aliceblue;
    
  }
  
  h1 {
    color: currentColor;
  }
  
  #game-over-area {
    text-align: center;
    border: currentColor;
    padding: 50px;
    width: 50%;
    margin-top: 50px;
  }

  
  button {
    background-color: transparent;
    color: currentColor;
    border: currentColor 1px solid;
    padding: 10px;
    font-size: 1.5em;
  }
  
  .hidden {
    display: none;
  }
  
  .visible {
    display: block;
  }
  

   