* {
    /* outline: 1px solid red; */
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    /* background-color: white; */
}

/* body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("./background-splatter.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.5;
    filter: blur(8px);
} */

header {
    border-bottom: 1px solid hsl(0, 0%, 60%);
    height: 72px;
    max-height: 72px;
    width: 100%;
    background-color: hsl(0, 0%, 100% / 0.6);
    position: sticky;
    top: 0;
    z-index: 999;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 1rem;
}

figure:not(.about) {
    margin-inline: 0rem;
    border-radius: 0.5rem;
    /* Google box shadow props for fine-tuning adjustment */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    overflow: clip;
}

figure img {
    height: 100%;
    width: 100%;
    outline: 1px solid hsl(0, 0%, 60%);
    margin: 0rem 0rem;
}

blockquote {
    margin-inline: 0;
    max-width: 80ch;
}

.branding__container {
    width: fit-content;
}

.branding {
    font-size: 1.5rem;
}

.hero {
    width: 100vw;
}

.hero__container {
    position: relative;
}

.hero__image {
    width: 100%;
}

.hero__text {
    height: 100%;
    width: 100%;
    inset: 0;
    position: absolute;
    color: white;
    display: grid;
    place-items: center;
}

.hero__text h2 {
    margin-inline: auto;
}

.row {
    display: column;
    columns: 2;
    padding: 0.5rem;
}

.row > * {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}
