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: var(--background);

    a {
        text-decoration: none;
    }

    > header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        min-height: 4.5rem;
        color: var(--primary);
        user-select: none;


        > div.links {
            display: flex;
            align-items: center;
            gap: 1rem;

            font-weight: bold;
            font-size: 3rem;

            > img.logo {
                height: 3.6rem;
                animation: spin-right .75s ease-in-out forwards;
            }
            nav {
                display: flex;
                gap: .5rem;

                a {
                    font-size: 1.4rem;
                    text-decoration: none;
                    color: var(--red);
                    background-color: var(--background);
                    padding: .2rem .6rem;
                    border-radius: .5rem;
                    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color .25s;

                    &:hover {
                        background-color: lightgray;
                    }
                }
            }
        }
        > div.user {
            > img {
                border-radius: 0.65rem;
                width: 50px;
                height: 50px;
            }
        }
    }

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

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

.hidden {
    display: none !important;
}
