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

body {
    display: grid;
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f5f5f5;
    font-family: "Open Sans", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #3b3b3b;
}

.wrapper {
    align-self: center;
    justify-self: center;
    text-align: center;
    width: 47%;
    min-width: 360px;
    max-width: 1000px;
}

.main-content {
    margin: 2rem 0;
}

.left-aligned {
    text-align: left;
}

.main-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.main-content .emphasized {
    font-size: 1.4rem;
}

h1 {
    font-size: 1.8rem;
    font-weight: 400;
}

h2 {
    font-size: 1.6rem;
    font-weight: 400;
}

h3 {
    font-size: 1.2rem;
    font-weight: 400;
}

footer {
    margin-top: 3rem;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.logo {
    margin-bottom: 1rem;
    max-width: 480px;
}

a:link, a:visited {
    color: #3b3b3b;
    text-decoration: none;
}

a:hover, a:active {
    color: #0eb1d2;
}

.company-name {
    font-size: 1.8rem;
    margin: 2rem 0 0.4rem 0;
}

@media screen and (width < 480px) {
    .delimiter {
        display: none;
    }

    .addendum {
        display: block;
        margin-top: 0.4rem;
    }

}
