html {
    font-family: "Red Hat Text", sans-serif;
    color: var(--Rose900);
    position: relative;
    min-height: 100%;
    background-image: url("../images/treats-clipart-illustrated-cupcakes-cartoon-vector-baked-goods-ingredients_561077_wh860.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    scroll-behavior: smooth;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    /* shorthand para top/right/bottom/left = 0 */
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

body>* { /* (*>) significa que TODO FILHO DIRETO do body ficara por cima do html e do body:: before   */
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1440px;
    margin: auto;
}