#layout {
    display: flex;
    flex-direction: column;
    width: 100vw;
    background-image: image-set(url("../images/bg-mobile.jpg") 1x, url("../images/bg-mobile@2x.jpg") 2x);
    background-position: top center;
    background-color: #FFF9F5;
}

#left-bleed,
#right-bleed {
    display: none;
}

#left-pan,
#right-pan {
    flex: 1;
    width: 100%;
    height: auto;
    background-image: none;
    display: block;
}

#left-pan .content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#right-pan .content {
    position: relative;
    width: 100%;
}

header {
    display: block;
    background-color: var(--orange);
    height: 104px;
}

h1 {
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

h1 .author {
    color: var(--yellow);
    font-size: 0.6em;
    font-weight: 600;
    padding: 10px 10px 0px 10px;
}

h1 .context {
    margin-top: -0.5em;
    font-size: 0.6em;
    color: var(--cream);
    width: 50%;
    padding: 10px 10px 0 10px;
}

.pitch {
    margin-top: 1.2em;
    line-height: 1.3em;
    font-size: 0.9em;
    padding-right: 2em;
}

.pitch h2 {
    margin-bottom: 0.2em;
    font-size: 1em;
}

.pitch>div:first-child {
    border-radius: 0 10px 10px 0;
    margin-right: 1em;
    border-top: 1px;
    border-right: 1px;
    border-bottom: 1px;
}

#stacks {
    width: 350px;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 2em;
    position: absolute;
    top: 575px;
    left: 25px;
    right: 25px;
    font-size: 0.9em;
    color: var(--cream);
    transform: rotate(-28deg);
}

.stack li {
    list-style-image: url("../images/bullet-cream.png");
    margin-bottom: 0.6em;
}

#flutter-demo-button {
    position: absolute;
    top: -190px;
    left: 1em;
}

.outlined-button {
    padding: 0.5em 1em 0.5em 1em;
    font-size: 0.8em;
}

#contact {
    position: absolute;
    top: 24px;
    right: 20px;
}

#contact a {
    background-image: image-set(url("../images/linkedin-white.png") 1x, url("../images/linkedin-white@2x.png") 2x);
    display: block;
    width: 51px;
    height: 44px;
    font-size: 0;
    margin-top: 0;
    padding: 0;
}

.arrow-button {
    background-image: url(../images/arrow-orange.png);
    background-position: left center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 1em;
    padding: 1em;
    padding-left: 30px;
}

.arrow-button a {
    color: black;
    text-decoration: underline;
    font-size: 0.9em;
    text-decoration-thickness: 1px;
}

.arrow-button:hover {
    background-image: url(../images/arrow-green.png);
}

.arrow-button:hover a {
    color: var(--green);
}

footer {
    top: 100dvh;
}