body {
    display: flex;
    flex-direction: column;

    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;

    min-height: 100vh;

    background-color: black;

    a {
        text-decoration: none;
    }

    > main {
        turbo-frame {
            flex-grow: 1;
        }
        flex-grow: 1;
        padding: 0 1rem;

        > header {
            margin: .6rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 3rem;
            color: white;
            h1 {
                text-transform: capitalize;
            }
        }
    }
}

.hidden {
    display: none !important;
}
