/* rightbox/rightbox-base.css is the base stylesheet for all pages made with the rightbox template */

body, h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

body {
	background-attachment: fixed;
}

/* the var(--global_color-background) background */
.basebox-bg {
    position: fixed;
    z-index: -999;
    top: 0;
    bottom: 0;
}

.basebox-bg,
.basebox {
    width: min(47rem, 100%);
    padding: 1rem;
    
    p {
        text-align: justify;
        line-height: 2;
        margin-top: 0.5rem;
    }

    header p {
        line-height: 1.5;
    }
    
    /* for non-home baseboxes */
    .header h1 {
        text-transform: uppercase;
        font-style: italic;
    }
}


@media (min-width: 800px) {
    .basebox-bg {
        border-right-width: 0.25rem;
        border-right-style: dotted;
        outline-width: 0.15rem;
        outline-style: solid;
    }
}

@media (min-width: 1600px) {
    /* DEFUALT - SINGLE COL */

    .basebox,
    .basebox-bg {
        width: min(47rem, 100%);
    }

    /* END */
}