#header {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100px;

    background: linear-gradient(hsla(0, 0%, 0%, 70%) 0 15%, hsla(0, 0%, 0%, 50%) 50%);

    align-items: center;
    justify-content: center;
}

#header img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

#header h1 {
    position: absolute;
    width: 100%;
    text-align: center;
    color: hsl(0, 0%, 80%);
    text-shadow: 2px 0 hsla(0, 0%, 10%, 50%), -2px 0 hsla(0, 0%, 10%, 50%), 0 2px hsla(0, 0%, 10%, 50%), 0 -2px hsla(0, 0%, 10%, 50%),
        1px 1px hsla(0, 0%, 10%, 50%), -1px -1px hsla(0, 0%, 10%, 50%), 1px -1px hsla(0, 0%, 10%, 50%), -1px 1px hsla(0, 0%, 10%, 50%);

    font-size: calc(min(2rem + 2vw, 2.5rem));
}