header {
    position: relative;
    top: 0;
    width: 100%;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.search_container {
    width: 200px;
    height: 32px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 8px;
    gap: 8px;
}

#searchField {
    width: 160px;
    border: 0;
}

@media (max-width: 510px) {
    .logo {
        height: 125px;
    }
}

@media (max-width: 430px) {
    .logo {
        height: 100px;
    }
}

@media (max-width: 350px) {
    .logo {
        height: 90px;
    }
}