body {
    margin: 0;
    padding: 0;
    background-color: white;
    overflow: auto; 
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100vw;
    position: absolute;
    height: 100vh;
    top: 70px;
    left: 0px;
    right: 0px;
    padding: 0; 
    box-sizing: border-box;
    overflow-y: auto;
    height: calc(100vh - 70px);
}

.grid-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hidden {
    display: none;
}

#question-container {
    z-index: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 300px;
}

#answer-input {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#question-container button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

#question-container button:hover {
    background-color: #444;
}

#feedback {
    margin-top: 10px;
    font-weight: bold;
}

.dont-click-me {
    cursor: pointer;
}

#next-ch {
    display: none;

}