.body1 {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.container1 {
    text-align: center;
    margin: 60px 20px 50px 20px;
}

header h1 {
    color: #e50914;
}

main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

#word-search {
    display: grid;
    grid-template-columns: repeat(20, 30px); /* Adjusted for 20 columns */
    gap: 2px; /* Reduced gap for better fit */
}

#word-search div {
    width: 30px;
    height: 30px;
    background-color: #333;
    color: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px; /* Adjust font size if needed */
    cursor: pointer;
    user-select: none;
}

#word-search div.selected {
    background-color: #e50914;
}

#word-search div.found {
    background-color: #34c759;
}

#word-list {
    text-align: left;
}

#words-to-find {
    list-style: none;
    padding: 0;
}


@media(max-width:767.98px){
    /* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: #e5e5e5;
    margin: 0;
    padding: 0;
}

.body1 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container1 {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

header h1 {
    color: #e50914;
    margin-bottom: 20px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Word Search Grid */
#word-search {
    display: grid;
    grid-template-columns: repeat(10, 1fr); /* 10 columns */
    gap: 2px;
    max-width: 600px; /* Limit width for smaller screens */
    margin: 0 auto; /* Center align on larger screens */
}

#word-search div {
    width: 30px;
    height: 30px;
    background-color: #333;
    color: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

#word-list {
    text-align: left;
    max-width: 600px; /* Limit width for smaller screens */
    margin: 0 auto; /* Center align on larger screens */
}

#words-to-find {
    list-style: none;
    padding: 0;
}

}