body{
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

.main-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100vw;
    gap: 3rem;
}

.header-logo{
    margin-left: 3rem;
    flex: 0 0 auto;
}

.header-search{
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    min-width: fit-content;
}

.header-search input{
    width: 100%;
    height: 2rem;
    padding: 0.5rem;
    font-size: 16px;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
}

.header-search input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.header-user-access{
    margin-right: 3rem;
    text-align: center;
    flex: 0 0 auto;
}

.header-user-button {
    display: inline-block;
    padding: 0.5rem;
    width: 100%;
    height: 2rem;
    text-decoration: none;
    color: black;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 16px;
    cursor: pointer;
}

.header-user-button:hover {
    background-color: rgba(0, 0, 0, 0.2);
}