body {
    background: #222222;
    /* min-height: 150vh; */
    height: auto;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    color: white;
}

.telimat {
    font-size: 16px;
    width: 100%;
    padding: 0px 5px;
    box-sizing: border-box;
    text-align: center;
    color: white;
}

.grid {
    /* background-color: royalblue; */
    width: 96%;
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 10px;
    margin-top: 20px;
    margin-left: 2%;
    margin-right: 2%;
    align-items: center;
    justify-content: center;
}

.cell {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Ensure this matches the height of the grid cell */
    box-shadow: 0px 0px 6px rgb(235, 240, 255);
    border-radius: 6px;
    cursor: pointer;
}

.cell img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 6px;
    /* border: solid 1px blue; */
}

.btnContainer {
    text-align: center;
    margin-top: 30px;
    box-sizing: border-box;
}

.btnContainer button {
    background-color: white;
    width: 120px;
    height: 40px;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 0px 5px black;
    font-size: 1em;
    cursor: pointer;
}

#startButton {
    margin-right: 20px;
}

#resetButton:active {
    box-shadow: none;
    background-color: blueviolet;
}

#share-button {
    width: 160px;
}

#feedback {
    /* text-align: center; */
    margin-top: 20px;
    font-size: 18px;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #f8f8f8; /* Light background color */
    border-radius: 8px;
    box-sizing: border-box;
    width: 98%;
    margin-left: 1%;
}

#feedback img {
    max-width: 100px; /* Adjust the max-width */
    margin: 10px auto; /* Center the image */
    display: block; /* Ensures block display */
    
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 0px 10px rgb(0, 119, 255); /* Subtle shadow */
}

.xeberdarliq {
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    font-size: 16px;
    color: azure;
}


.fb-iframe {
    margin-bottom: 20px;
}











    .bubble-container {
        position: relative;
        height: auto;
        overflow: hidden;
      }
      
      .bubble {
        position: absolute;
        border-radius: 50%;
        background-color: #007bff;
        animation: rise 2s linear forwards;
      }
      
      @keyframes rise {
        0% {
          bottom: 0;
        }
        100% {
          bottom: 250vh;
        }
      }
      
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .bubble {
          width: 10px;
          height: 10px;
        }
      }



@media screen and (min-width: 800px) {

    body {
        padding-bottom: 50px;
        box-sizing: border-box;
    }

    #feedback {
        width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .xeberdarliq {
        width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .fb-iframe {
        text-align: center;
    }


}