* {
    margin: 0;
    padding: 0;
}

body {
    align-items: center;
    background-color: hsl(0, 100%, 23%);
    background-image: radial-gradient(circle farthest-side at center, hsl(0, 100%, 33%) 0%, hsl(0, 100%, 23%) 100%);
    color: rgb(246, 230, 238);
    display: flex;
    flex-direction: column;
    font-family: "Merriweather", serif;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

h1 {
    font-family: "Work Sans", sans-serif;
    font-size: 8vw;
    font-size: min(calc(6vw + 1rem), 4rem);
    font-weight: 600;
    margin-bottom: .35em;
    padding: 0 1em;
    text-shadow: .05em .025em .15em rgb(0 0 0 / .35);
}

p {
    font-size: min(calc(.75vw + .75rem), 1.5rem);
    padding: 0 1em;
    text-shadow: .3em .2em .2em rgb(0 0 0 / .25);
}

@supports (min-height: 100dvh) {
    body {
        min-height: 100dvh;
    }
}