body {
    text-align: center;
    font-family: Arial, sans-serif;
  }
  .clickable:active {
    transform: scale(0.9);
  }
  .counter {
    font-size: 24px;
    margin-top: 10px;
  }
  .clickable {
    width: 200px;  /* Set a fixed width */
    height: 200px; /* Set a fixed height */
    object-fit: contain; /* Ensures the image scales without distortion */
    cursor: pointer;
    transition: transform 0.1s;
  }
  button {
    background: #ddd; /* Light gray */
    display: inline-block;
    color: #333; /* Dark gray text */
    font-size: 18px;
    padding: 12px 24px;
    border: 2px solid #bbb; /* Slight border for depth */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  button:hover {
    background: #ccc; /* Slightly darker gray */
    border-color: #aaa;
  }
  
  button:active {
    background: #bbb;
    border-color: #999;
    transform: translateY(2px); /* Press effect */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  .cd {
    position: fixed; /* Fixes the element in place */
  bottom: 0;       /* Positions the element 0 pixels from the bottom */
  left: 0;         /* Positions the element 0 pixels from the left */
  }
  .sc {
    position: fixed; /* Fixes the element in place */
  bottom: 0;       /* Positions the element 0 pixels from the bottom */
  left: 120px;         /* Positions the element 0 pixels from the left */
  }
  .tt {
    position: fixed; /* Fixes the element in place */
  bottom: 0;       /* Positions the element 0 pixels from the bottom */
  left: 240px;         /* Positions the element 0 pixels from the left */
  }



