body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #f9faf5, #ffdabb);
}



.container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 60em;
    max-width: 90%;
    margin-top: 20vh; /* Adjust this value as needed */
    
}

@media (max-width: 600px) {
    .container {
        margin-top: 0;
        padding-top: 1vh;
    }
    #titleThingy {
        font-size: 1.5em;
    }
}

#questions {
    margin: 20px 0;
    font-size: 1.2em;
    color: #333;
    text-align: left;
    padding-left: 20px;
    list-style: none;
    counter-reset: question-counter;
}

#questions li {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
    text-indent: -1.2em;
}

#questions li::before {
    counter-increment: question-counter;
    content: counter(question-counter) ". ";
    font-weight: bold;
}
    

button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #ff7700;
    color: white;
    transition: background-color 0.3s ease;
    position: relative;
}


button:hover {
    background-color: #b34b00;
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
    color: #666;
    padding: 1px 0;
    position: absolute;
    bottom: 0;
}

@media (max-height: 600px) or (max-width: 600px) {
    footer {
        display: none;
    }
}

.caption {
    margin-right: 1em;
    margin-left: 1em;
}

.github-link {
    color: #333;
    font-size: 1.2em;
    text-decoration: none;
}

.github-link:hover {
    color: #000;
}


.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}



button:hover {
    background-color: #b35100;
}

#lock-btn {
    width: 50px;
    padding: 10px;
}

button.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

button.disabled:hover {
    background-color: #ccc;
}

button::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 3px 6px;
    font-size: 0.75em;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

button:hover::after {
    opacity: 1;
}

#ai-btn {
    cursor: pointer;
    width: 50px;
    padding: 10px;
    background-color: #cccccc;
    color: white;
}

#ai-btn.grey {
    cursor: pointer;
    width: 50px;
    padding: 10px;
    background-color: #cccccc;
    color: white;
}

#ai-btn.blue {
    cursor: pointer;
    width: 50px;
    padding: 10px;
    background-color: #ff7700;
    color: white;
}