.page-body {
    font-family: var(--page-font);
    color: var(--font-color);
    background-image: var(--background-image);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-color: var(--font-color);

    main {
        display: flex;
        flex-direction: column;
        position: absolute;
        inset: 10% 10%;
        gap: 1rem;
        align-items: center;
        justify-content: center;

        header {
            h1,
            h2 {
                font-weight: 600;
                margin: 0;
                font-size: clamp(2rem, 3.5vw, 3.5rem);
            }
            p {
                margin: 0;
                font-size: clamp(1rem, 1.6vw, 1.6rem);
            }
            display: flex;
            flex-direction: column;
            align-items: center;
            text-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            a {
                font-size: clamp(1rem, 1.5vw, 1.5rem);
                /* min-width: 12vw; */
                text-align: center;
                display: block;
                color: var(--font-color);
                border: 1px solid var(--font-color);
                text-decoration: none;
                border-radius: 100px;
                padding: 0.5rem 2rem;
                backdrop-filter: blur(10px);
                &:hover {
                    background-color: rgba(var(--font-color-rgb), 0.2);
                }
            }
        }
    }
    main.left {
        align-items: start;
        header {
            align-items: start;
        }
    }
    main.right {
        align-items: end;
        header {
            align-items: end;
        }
    }
    main.top {
        justify-content: start;
    }
    main.bottom {
        justify-content: end;
    }
}
