html, body {
    background: #e1d6ca;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    color: #1e1e1f;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    box-sizing: border-box;
    min-height: 100vh;
    border-radius: 10px;
}

.background {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    background-color: #e1d6ca;
    /* box-shadow: #e1d6ca 0 0 10px 5px; */
    padding: 6vw;
}

.background::after {
    content: '';
    position: absolute;
    border: 1px solid #aca49b;
    top: 5vh;
    bottom: 5vh;
    left: 0;
}

header {
    position: relative;
    padding: 6vw;
    grid-row: 1 / 3;
    overflow: hidden;
}

header svg {
    opacity: 0.7;
}

path {
    /* mix-blend-mode: soft-light; */
}

#bloom {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.content {
    position: relative;
    z-index: 1;
}

main {
    padding-top: 5vh;
}

h1 {
    text-transform: lowercase;
    font-weight: 700;
    font-style: normal;
    font-size: 7vw;
    margin: 0;
    line-height: 1em;
    text-shadow: #e1d6ca 0 0 15px;
    /* background: #e1d6ca56;
    box-shadow: #e1d6ca56 0 0 10px 5px; */
    border-radius: 1rem;
}

p {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
    text-wrap: balance;
}

footer {

}

@media (max-width: 640px) {
    .content {
        grid-template-rows: auto 1fr;
    }

    header {
        grid-row: 1 / 2;
        grid-column: 1 / 4;
    }

    h1 {
        font-size: 10vw;
    }

    .background {
        grid-row: 2 / 3;
        grid-column: 1 / 4;
    }

    .background::after {
        left: 6vw;
        right: 6vw;
        top: 0;
        bottom: auto;
    }
}