/* border box declartion */
html {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }
  
  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }
  body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
  }
  .header {
    width: 100%;
    height: 50px;
    background-color: rgb(132, 218, 125);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
  }
  .title {
    font-size: 1.5em;
  }

  .row {
      display: flex;
  }

  .cell {
      width: 10px;
      height: 10px;
      border: 1px solid black;
      background-color: rgba(202, 199, 199, 0.973);
  }


  .alive {
      background-color: rgb(21, 177, 29);
  }

  /* below is for modal */
  .overlay {
    max-width: 100vw;
    max-height: 100vh;
    position: fixed;
    top: 0;
    font-size: .75em;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(170, 181, 216, 0.87);
    visibility: hidden;
    opacity: 0;
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.showModal {
visibility: visible !important;
opacity: 100 !important;
}

.infoHeader {
  display: flex;
  justify-content: space-around;
}