* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

header {
    background-color: #e90000;
    padding: 1.25rem;
    display: flex; 
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo img {
    max-width: 15.625rem;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 1rem;
}

.search {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.search input {
    padding: 1rem;
    border: none;
    border-radius: 0.2rem;
}

.search button {
    padding: 1rem 2rem;
    background-color: #F44336; 
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 0.3rem; 
}