body {
  padding: 0;
  margin: 0;
  overflow-y: hidden;
  background-color: #ffffff;
  /* Add grainy texture background */
  background-image: url('./grain.jpg'); /* Replace 'grainy-texture.png' with your own texture */
  background-size:contain;
  background-blend-mode: overlay; /* Adjust blending mode */
  opacity: 1; /* Adjust opacity */
}



.block {
    height: 33vh;
    max-height: 33.3vh;
    width: 100vw;
  }

.container {
  text-align: center;
    width: 100%;
    max-height: 33.3vh;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
  }
  
  .square1 {
    width: 30vh;
    height: 30vh;
    max-height: 30vh;
    display: inline-block;
    margin-right: 5px; /* Adjust as needed */
    scale: 0.85;
  
  }

  .square2 {
    width: 30vh;
    height: 30vh;
    max-height: 30vh;
    display: inline-block;
    margin-right: 5px; /* Adjust as needed */
  }

  .square3 {
    width: 30vh;
    height: 30vh;
    max-height: 30vh;
    display: inline-block;
    margin-right: 5px; /* Adjust as needed */
    scale: 0.85;
  }

  .ht{
    margin: 0px;
    color: #ffffff;
    font-size: xxx-large;
    font-weight: bolder;
    text-align: cen;
  }
  
  h2{
    text-align: center;
    margin: 30px;
    font-size:large;
  }

  .dashed-divider {
    border: none;
    border-top: 2px dashed #ffffff72; /* Adjust color and thickness as needed */
    margin: 20px 0; /* Adjust margin as needed */
}

.buttonparent{
width: 100vw;
position: fixed;
bottom:100px;
}

button {
  width: 250px;
  height: 50px;
  background-color: rgb(0, 0, 0);
  color: #fff;
  border-radius: 50px;
  position: fixed;
  left: calc(50vw - 125px);
  border: none; /* Remove default border */
  box-shadow: none; /* Remove shadow */
}

 /* Define animation */
 @keyframes clickAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Apply animation to button */
.click-animation {
    animation: clickAnimation 0.3s ease;
}