@import url(https://fonts.googleapis.com/css?family=Inter:400,500,600,700,800,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,600,700,800,900&display=swap);

body {
    font-family: 'Open Sans', Inter, sans-serif;
    font-size: 12px;
    color: #333;
}

a {
    text-decoration: none;
    font-weight: 500;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 80%;
}

.navbar>div {
    width: 100px;
    text-align: right;
    font-size: 1.4em;
}

.header-logo {
    margin-top: 40px;
    align-self: center;
}

.title {
    text-align: center;
    font-family: Open Sans;
    font-size: 2.4rem;
    margin: 0 0 4rem;
    text-transform: uppercase;
    font-weight: 600;
}

.description {
    margin-top: 40px;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.4em;
    color: #666;
    text-align: center;
    align-self: center;
    width: 90%;
}

.options {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.option {
    padding: 30px;
    width: 300px;
    text-align: center;
}

.option-title {
    font-size: 2em;
    font-weight: 900;
    line-height: 3em;
}

.option-text {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #666;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.footer-logo>div {
    align-self: center;
}

.footer-logo>div:first-child {
    padding-right: 50px;
    margin-top: 20px;
}

.footer-logo>div:last-child {
    padding-left: 50px;
}

.footer {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.footer>div {
    font-size: 1.3em;
    text-align: center;
    width: 300px;
}

.copyright {
    margin: auto;
    margin-top: 30px;
    font-size: 1em;
}