body {
    font-family: 'Rubik', sans-serif;
    background-color: #fcf7e3;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    width: 100%;
    max-width: 1024px;
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

nav>img {
    height: 80px;
    width: auto;
}

.pusher {
    flex: 1;
}

nav>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav>ul>li {
    margin: 0;
}

nav>ul>li>a {
    display: block;
    color: #0e2b47;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav>ul>li>a:hover {
    background-color: #e9e5d2;
}

.hero {
    box-sizing:border-box;
    width: 100%;
    max-width: 1024px;
    padding: 1rem;
    margin-top: 1rem;
    background-color: #e9e5d2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero>img {
    width: 300px;
    height: auto;
}

.hero>h1 {
    margin-bottom: 0;
    color: #44604b;
    font-size: 2rem;
    text-transform: uppercase;
}

.hero>p {
    font-size: 1.2rem;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content {
    box-sizing:border-box;
    width: 100%;
    max-width: 1024px;
    padding: 2rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-content {
    box-sizing:border-box;
    width: 100%;
    max-width: 1024px;
    padding: 2rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #e9e5d2;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content {
    box-sizing:border-box;
    width: 100%;
    max-width: 1024px;
    padding: 2rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-size: 1.3rem;
    color: #44604b;
    text-decoration: underline;
    text-transform: uppercase;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    box-sizing:border-box;
    width: 100%;
    max-width: 1024px;
    padding: 0.2rem 1rem;

    background-color: #e9e5d2;
}

@media(max-width: 980px) {
    nav {
        justify-content: center;
    }

    nav>ul {
        display: none;
    }

    .pusher {
        display: none;
    }
}