body {
    max-width: 1500px;
    margin: 0 auto;
}

main {
    display: flex;
    flex-flow: column wrap;
    padding-bottom: 2rem;
}

/* Classes */
.main-header {
	background: var(--nc-bg-2);
	border-bottom: 1px solid var(--nc-bg-3);
	padding: 2rem calc(50vw - 50%);
	
	/* This sets the right and left margins to cancel out the body's margins. It's width is still the same, but the background stretches across the page's width. */
	margin: -1rem calc(0px - (50vw - 50%)) 2rem;
}

.main-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.main-header .main-nav {
    font-size: 1.1rem;
}

.post-types {
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.post-types > li {
    flex: 1 0 15rem;
    text-align: center;
    padding: 1rem;
}

.post-types > li a {
    font-size: 16px;

    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 0.5rem 2rem;
    background: var(--nc-bg-2);
}

.post-types > li a:hover {
    background: var(--nc-bg-1);
}

.post-types > li a svg {
    width: 16px;
    height: 16px;
}

.preview {
    background: var(--blue-6);
    max-width: 40rem;
    margin: 1rem auto;
    padding: 1rem 1.5rem;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 35%);
    border-radius: .4rem;
}

.micropub-form .btn-container a {
    color: var(--highlight-color, var(--nc-lk-1));
}

.micropub-form .btn-container .btn {
    background-color: var(--highlight-color, #0069d9);
}

.svg-icon {
    width: 25px;
    height: 25px;
}

.svg-icon--feather {
    fill: none;
    stroke: white;
    stroke-width: 2px;
}

