/* Reset */

body {
    max-width: 1920px;
    margin: 0 auto;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    line-height: var(--font-size-36);
    color: var(--primary);
    background-color: var(--background);
    
}

main {
min-height: 100vh;
}

a {
    color: var(--accent);
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--primary);
}

.container {
    max-width: calc(600px + var(--space-32));
    margin: 0 auto;
    padding-inline: var(--space-16);
}


.container--large {
    max-width: calc(768px + var(--space-32));
	    margin: 0 auto;
    padding-inline: var(--space-16);
}

img {
    width: 100%;
    height: auto;
    display: block;
}

h1:not(.single-post h1), h2:not(.single-post h2), h3:not(.single-post h3), h4:not(.single-post h4), h5:not(.single-post h5), h6:not(.single-post h6) {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}
