body { background-color: skyblue; font-family: Arial, sans-serif; } .container { width: 80%; margin: auto; padding: 20px; background-color: white; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } h1 { text-align: center; } form { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; } label { margin-right: 10px; } input[type="text"] { width: 300px; padding: 5px; font-size: 16px; border-radius: 5px; border: 1px solid #ccc; } input[type="submit"] { padding: 5px 10px; font-size: 16px; background-color: #007bff; color: white; border: none; border-radius: 5px; cursor: pointer; } .results { max-height: 200px; overflow-y: auto; border: 1px solid #ccc; padding: 10px; border-radius: 5px; } ul { list-style-type: none; padding: 0; } ul li { margin-bottom: 10px; }