body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

input[type="text"] {
    width: 1em;
    font-size: 1.2em;
    padding: 6px;
    margin: 1px;
    border: 1px solid #435536;
    border-radius: 4px;
    text-align: center;
}

input[type="text"]:hover {
    border-color: blue;
}

.button-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

button {
    margin-top: 20px;
    padding: 10px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 48%;
    font-size: 1.2em; /* Added font size */
}

button[type="submit"] {
    background-color: #007bff;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

button#clearButton {
    background-color: red;
}

button#clearButton:hover {
    background-color: darkred;
}

#results {
    margin-top: 20px;
}

#results p {
    font-size: 18px;
}