#layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

#left-bleed,
#right-bleed {
    flex: 1 1 0;
    min-height: 100vh;
}

#left-pan,
#right-pan {
    flex: 999 0 720px;
    max-width: 960px;
    min-height: 100vh;
}

#left-bleed {
    background-image: url("../images/bg-bleed-left.jpg");
    background-repeat: repeat-x;
}

#right-bleed {
    background-image: url("../images/bg-bleed-right.jpg");
    background-repeat: repeat-x;
}

#left-pan {
    max-width: 960px;
    min-height: 100vh;
    background-position: right top;
    background-image: image-set(url("../images/bg-left-pan.jpg") 1x,
            url("../images/bg-left-pan@2x.jpg") 2x);
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: right;
}

#right-pan {
    background-position: left top;
    background-image: image-set(url("../images/bg-right-pan.jpg") 1x,
            url("../images/bg-right-pan@2x.jpg") 2x);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: right;
}

#left-pan .content {
    position: relative;
    width: 720px;
    display: flex;
    flex-direction: column;
}

#right-pan .content {
    position: relative;
    width: 720px;
}

header {
    height: 46px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
}

h1 {
    width: 100%;
    font-size: 1.4em;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    align-items: center;
}

h1 span {
    flex-grow: 1;
}

h1 .author {
    color: var(--yellow);
}

h1 .context {
    color: var(--cream);
}

.pitch {
    margin-top: 1.3em;
    line-height: 1.3em;
    font-size: 1.1em;
    padding: 0 3em 0 1em;
}

.pitch h2 {
    margin-bottom: 0.2em;
    font-size: 1.2em;
}

#stacks {
    width: 600px;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 2em;
    position: absolute;
    top: 560px;
    left: 150px;
    font-size: 1.3em;
    color: black;
    transform: rotate(-28deg);
}

.stack li {
    list-style-image: url("../images/bullet-black.png");
    margin-bottom: 0.6em;
}

#flutter-demo-button {
    position: absolute;
    top: 250px;
    left: 320px;
}

