body {
    text-align: center;
}

/* include border and padding in element width and height */
* {
  box-sizing: border-box;
}

.ticket {
    text-align: center;
    display: inline-block;
    background-color: lightpink;
}

.footer {
  padding: 10px;
}

.error-message {
  background-color: #ffefd5;
  border: solid 1px hotpink;
}

.hidden {
  display: none;
}

.selected {
  background-color: khaki !important;
}

.grid {
    grid-auto-flow: column;
    display: grid;
    width: 480px;
    height: 480px;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 2%;
    padding: 2%;
  }
  
  .square {
    cursor: pointer;
    aspect-ratio: 1/ 1;
    display: flex;
    place-items: center;
    text-align: center;
    justify-content: space-around;
    
    /* padding: 5%; */
    background-color: white;
    color: black;
    border-radius: 20px;
    border-color: hotpink;
    border-style: solid;

    font-size: 40px;
  }
  
  .square img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  
  .square.fullImg {
    padding: 0;
  }
  
  .square.fullImg img {
    object-fit: cover;
  }

  #running-in {
    animation-timing-function: ease-in;
  }

  #running-out {
    animation-timing-function: ease-out;
  }