header {
    padding: 0;
    width: 100%;  
    display: flex;
    flex-direction: row;
    gap:0;
    max-height: 50vh;
    border-right: 1px solid var(--foreground);
    border-bottom: 1px solid var(--foreground);
}

header > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    padding:24px;
    width: 50%;
    border-right: 1px solid var(--foreground);
    gap:28px;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
}

header > div > div:first-child {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

header > div:nth-child(2) {
    padding:0;
}

header > div:nth-child(2) > img {
    object-fit: cover;
    min-height: 100%;
    width: 100%;
}

/** If the user is on a mobile device, make the row stack */

@media screen and (max-width: 800px) {
    header {
        flex-direction: column-reverse;
        max-height: 100vh;
        width: 100%;
    }

    header > div {
        width: 100%;
    }
} 
