#tiles2{
    display: inline-flex;
      align-items: center;
  }
    /* CSS for the counter container */

/* CSS for each countdown item */
.countdown-item2 {
  background: linear-gradient(145deg, #555, #444);
  padding:10px 5px;
  border-radius: 10px;
  width:60px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), inset 0 1px 3px rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease-in-out, background 0.3s, box-shadow 0.3s;
}
/* CSS for hover effect on countdown items */
.countdown-item2:hover {
  transform: scale(1.05);
  background: linear-gradient(145deg, #666, #555);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4), inset 0 2px 6px rgba(255, 255, 255, 0.1);
}
/* CSS for animated glow effect */
