body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px; /* Adjust height as needed */
    background-color: #f0f0f0; /* Placeholder background color */
    margin-bottom: 20px; /* Space between banner and content */
}

.container {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: auto; /* Center container horizontally */
    flex: 1; /* Allow container to expand to fill remaining space */
}

h1 {
    margin-bottom: 20px;
}

.word-container, .letters-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.separator {
    width: 100%;
    border: 1px solid #fff;
    margin: 20px 0;
}

.letter-box {
    width: 40px;
    height: 40px;
    margin: 5px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.letter-box.blank {
    background: #ff4081;
    color: #fff;
}

.draggable {
    cursor: move;
}

.submit-btn, .next-btn, .show-answer-btn {
    background: #00e676;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    transition: background 0.3s;
    margin: 10px;
}

.submit-btn:hover, .next-btn:hover, .show-answer-btn:hover {
    background: #66ffa6;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#result {
    margin-top: 20px;
    font-size: 20px;
}

.counters {
    margin-top: 20px;
    font-size: 18px;
}

.footer {
    text-align: center;
    margin-top: 20px; /* Space between content and footer */
    background-color: #fff; /* Footer background color */
    padding: 10px; /* Padding for the footer */
}

.footer p {
    margin: 0;
    color: blue; /* Footer text color */
    font-weight: bold; /* Bold text */
}

.footer a {
    color: blue; /* Link color */
}

@media only screen and (max-width: 768px) {
    .container {
        width: 90%;
    }
}
