:root{
    --primary-color: #010F19;
    --secondary-color: hsla(205, 13%, 51%, 1);
    --bg-primary: hsla(220, 12%, 95%, 1);
}
html{
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
}
h2 {
    font-size: 1.875rem;
    font-family: "Tilt Warp", "Arial", sans-serif;
    text-align: center;
}
.active {
    color: var(--primary-color);
    background-color: var(--darker-secondary-color);
}
#search {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#search h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
#search input {
    width: 30rem;
    height: 3rem;
    font-size: 0.938rem;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}
#search button {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
}
#search-header p {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-align: center;
}
#search-header h2{
    margin: 0 10px;
}
form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-family: "MuseoModerno", "Arial",  sans-serif;
}
form label {
    font-size: 1rem;
    margin-right: 10px;
}
form select {
    font-size: 1rem;
}
#search button:hover {
    background-color: var(--secondary-color);
} 
#search-results-container {
    display: flex;
    justify-content: center;
}