body {
    font-family: CozetteVector, CozetteVector;
    margin: 0;
    padding: 0;
    background-color: #252422;
    color: #f0f0f0; /* Change to lighter color for better contrast */
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

header {
    background: #252422;
    color: white;
    padding: 20px;
    text-align: center;
}

h1 {
    margin: 0;
}

.search-container {
    margin: 20px 0;
}

#search-input {
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #f0f0f0;
}

#search-input::placeholder {
    color: #aaa; /* Placeholder text color */
}

button {
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.links {
    margin-top: 20px;
}

.link {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #ffffff; /* Matches footer link color */
    transition: color 0.3s;
}

.link:hover {
    color: #007BFF; /* Change link color on hover */
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
}
