:root {
	--pico-font-size: 17px;
}
html {
    display: grid;
    height: 100%;
    grid-template-rows: 100%;
}
body {
	display: inherit;
	grid-template-rows: auto auto 1fr auto;
}
h1 {
	font-style: normal;
    font-weight: 700;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    line-height: 56px;
    text-transform: none;
    letter-spacing: -2px;
    color: #505050;
    white-space: nowrap;
}
@media only screen and (prefers-color-scheme: dark) {
    h1 {
        color:#fff;
    }
}
h1 span {
    font-size: 70px;
    vertical-align: middle;
}
h1 span:first-child {
    letter-spacing: -14px;
}
h1 span:nth-child(2) {
    position: relative;
    letter-spacing: -15px;
    z-index: 1;
}
h1 span:nth-child(3) {
    color: #c39f76;
    filter: blur(2px);
}
h1 span:nth-child(2):before {
    content: "";
    position: absolute;
    top: 10px;
    height: 28px;
    border-left: 1.5px solid var(--pico-background-color);
    border-top: 1.5px solid var(--pico-background-color);
    width: 44px;
    left: 2px;
    border-top-left-radius: 41px 24px;
}
h1 span:nth-child(2):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 4.5px;
    height: 37px;
    border-left: 1.5px solid var(--pico-background-color);
    z-index: 5;
}
body header h1 + p {
	text-indent: 130px;
    margin-top: -22px;
    font-size: 15px;
}

body>header, body>main {
	padding: 0;
}
body header,
body footer {
	text-align: center;
	margin-bottom: 5px;
}
body main.grid {
	margin: 0 auto 50px;
    grid-gap: calc(1.5*var(--pico-grid-column-gap));
	align-content: start;
    max-width: 1200px;
}
@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3,minmax(0%,1fr));
    }
}
body header > * {
	margin: 5px;
}
article {
	aspect-ratio: 2;
    position: relative;
    background: center/cover no-repeat;
    margin: 0;
    overflow: hidden;
}
article a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 10px 20px;
    font-size: 20px;
    text-decoration: none;
    background: linear-gradient(0deg,#fffd 2.5em,#0000 0);
    font-weight: bold;
}
.chrome:before {
    content: "Chrome Only";
    position: absolute;
    inset: 0 0 auto auto;
    transform-origin: 0 0;
    transform: translate(29.3%) rotate(45deg);
    background: #08769b;
    border-image:conic-gradient(#08769b 0 0) fill 0//0 100vw;
    color: #fff;
    font-size: 13px;
}
