/* /public/css/style.css */
body {
    font-family: 'Segoe UI', arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background-color: #007bff;
    color: white;
    padding: 1em;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    text-align: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    text-align: center;
    margin-top: 2em;
    padding: 20px; /* Add some padding to the main section */
    max-width: 600px; /* Limit width for readability */
    margin: auto; /* Center the main section */
}

section h2 {
    color: #333;
}

form input[type="text"] {
    padding: 0.5em;
    font-size: 1em;
}

form button {
    padding: 0.5em 1em;
    font-size: 1em;
    cursor: pointer;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
}

#explore {
    background-color: #327ad8;
    color: white;
    border: none;
    padding: 0.75em 1.5em;
    margin-top: 1em;
    font-size: 1em;
    cursor: pointer;
    font-family: montserrat, arial, sans-serif;
    border-radius: 5px;
}

footer {
    background-color: #d4d4d4;
    color: #333;
    padding: 1em;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

label {
    display: block;
    margin: 10px 0 5px;

}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

section {
    background-color: white; /* White background for the content */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow */
    padding: 20px; /* Add padding inside the section */

}

h1, h2 {
    margin: 8px; /* Remove default margins */
}

