@import "reset.css";
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,400i,900');

html {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #414141;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

header {
    background-size: cover;
    background: #5A78F2 no-repeat;
    color: white;
}

.container {
    padding: 2rem;
    margin: 0 auto;
}

header .container {
    padding: 12rem 3rem 3rem 3rem;
}

header .banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}

header .banner .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}

header a {
    color: white;
    text-decoration: none;
    text-underline: none;
}

section .container {
    margin: 2rem;
    background-color: #f4f8fa;
    border: 1px solid #d9e9e9;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-weight: 900;
}

h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
    text-rendering: optimizeLegibility;
}

a {
    color: #586069;
}

section p {
    color: #2B3137;
}

strong {
    font-weight: 900;
}

em {
    font-style: italic;
}

td {
    padding-right: 1rem;
    padding-bottom: 1rem;
    line-height: 1.25;
}