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

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

    min-height: 100vh;

    a {
        text-decoration: none;
    }

    > header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        min-height: 4.5rem;
        color: var(--primary);
        background-color: var(--secondary);
        /*background: linear-gradient(to bottom right, var(--red), var(--primary), var(--primary), var(--red));*/
        > div.links {
            display: flex;
            align-items: center;
            gap: 1rem;

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

            > img {
                height: 3.6rem;
            }

            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: 1rem;
            }
        }
    }

    > main {
        flex-grow: 1;
        background-color: var(--background);
        padding: 0 1rem;

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