/* CSS reset */
*, *::before, *::after {
    box-sizing: border-box;
}

body, header, nav, main, footer, h1, div, img, ul, ol, figure {
    margin: 0;
    padding: 0;
    border: 0;
}

body, h1, h2, h3, h4, h5, h6, p,
ul, ol, figure {
    margin: 0;
}

button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

html {
    font-size: 16px;
    height: 100%;
}

/* Body and text */

body {
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background-color: #32467a;
    color: #F5F5F5;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    min-width: 300px;
    text-align: center;
}
    
h1, h2, h3, h4, h5, h6 {
    font-family: Montserrat, "Segoe UI", sans-serif;
}

h1 { 
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h2 { 
    font-size: 1.35rem; 
    line-height: 1.25;
    margin: 2rem 0 1rem;
}
 
h3 { 
    font-size: 1.25rem; 
    line-height: 1.3;
    margin: 1.5rem 0 0.75rem;
}

h4 {
    font-size: 1.15rem;
    line-height: 1.35;
}

h5 {
    font-size: 1.10rem;
    line-height: 1.4;
}

h6 {
    font-size: 1.05rem;
    line-height: 1.45;
}

h4, h5, h6 {
    margin: 1.25rem 0 0.5rem;
}

p { 
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 1.5rem;
}

p + p {
    margin-top: 1rem;
}

q {
    font-style: italic;
}

small {
    font-size: 0.90rem;
    line-height: 1.4;
}

ul {
    list-style: none;
}

figcaption {
    font-size: 0.90rem;
    line-height: 1.4;
    font-style: italic;
}

a { 
    color: #F5F5F5 ;
    text-decoration: none;
    font-weight: 600;
}

a:hover, a:focus {
    color: #f5f5f5c5;
    text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid #F5F5F5;
  outline-offset: 2px;
}

/* SPACER */

.space {
    margin-top: 5rem;
}