@font-face { font-family: OakSans; src: url('OakSans-Regular.ttf'); }
@font-face { font-family: OakSans; font-weight: 600; src: url('OakSans-Semibold.ttf'); }
@font-face { font-family: OakSans; font-weight: 700; src: url('OakSans-Bold.ttf'); }

.zero-margin {
    margin: 0;
}

.brand-color {
    color: #B34C02;
}

html {
    height: 100%;
}

html, body {
    font-size: 16px;
    background: #f6f6f6;
    font-family: OakSans, Helvetica, sans-serif;
}

h1 {
    font-size: max(6vw, 40px);
    font-weight: 700;
    line-height: max(6vw, 40px);
}

h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 3.5rem;
}

h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

h4 {
    font-size: 2.5rem;
    font-weight: 600;
}

h5 {
    font-size: 2rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 700;
}

nav {
    display: flex;
    padding-bottom: 3vmin;
    padding-top: 3vmin;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 100px;
}

nav a, nav .links a {
    color: inherit;
    text-decoration: inherit;
    margin: 0 1rem;
    font-weight: 500;
}

nav a.logo {
    display: flex;
    align-items: center;
    color: black;
}

nav a.logo img {
    border: 1px solid #ececec;
    border-radius: 10px;
}

nav a.logo span {
    padding-left: 1rem;
    font-weight: 700;
    font-size: 2.5rem;
}

footer {
    margin-top: 10rem;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer a {
    color: #ccc;
    text-decoration: none;
    margin: 0 1rem;
}

.container {
    display: flex;
    flex-direction: column;
}

.pricing-container {
    padding: 3rem;
    background: white;
    border-radius: 10px;
}

.copyright {
    margin-top: 1rem;
    font-size: 12px;
    color: #ccc;
}

@media (width <= 950px) {
    nav {
        flex-direction: column;
    }

    nav a.logo {
        margin: 3rem 0;
    }
}
  