/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: whitesmoke;
    margin: 0;
}

header {
    background-color: lightblue;
    color: purple;
    text-align: center;
    padding: 20px;
}

main {
    padding: 20px;
}

img {
    width: 100px;
    height: auto;
}

/* Adventure Container */
#adventure-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px; /* Increased font size  ok right?
*/
}

#adventure-form {
    display: flex;
    margin-top: 20px;
}

#user-input {
    flex: 1;
    padding: 10px;
    font-size: 18px; /* Increased font size */
}

#adventure-form button {
    padding: 10px;
    font-size: 18px; /* Increased font size */
}
