@media screen and (min-width: 1250px) {
    body .container {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 640px) and (min-width: 500px) {
    h1 {
        font-family: 'Garamond', 'Palatino';
        font-size: 10vw;
    }

    h2 {
        font-size: 7vw;
    }

    h4 {
        font-size: 2.5vw;
    }

    body .header__logo {
        width: 12%;
        height: auto;
    }

    body .footer__quote {
        font-size: 2.5vw;
    }
}


@media screen and (max-width: 501px) {
    h1 {
        font-family: 'Garamond', 'Palatino';
        font-size: 25px;
    }

    h2 {
        font-size: 20px;
    }

    h4 {
        font-size: 12px;
    }

    body .header__logo {
        width: 46.66px;
        height: 46.66px;
    }

    body .footer__quote {
        font-size: 12px;
    }
}

a {
    text-decoration: none;
    color: black;
}

body {
    font-family: 'Didot';
    font-weight: normal;
    background-color: #ffffff;
    color: #2d3c49;
}

.container {
    margin-top: 8px;
    margin-right: 10%;
    margin-left: 10%;
}

h1 {
    color: #2d3c49;
    font-weight: bold;
}

h2 {
    color: #2d3c49;
    font-weight: normal;
}

h4 {
    color: #2d3c49;
    font-weight: 300;
}

.header {
    text-align: center;
    width: 100%;
}

.header__inner {
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: right;
}

.header__logo {
    width: 500px;
    height: 500px;
    box-sizing: border-box;
}

.header__image {
    display: inline-block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.body__image {
    max-width: 100%;
    height: auto;
}

.footer__quote {
    margin-left: 10%;
    margin-right: 10%;
}

.footer {
    position: fixed;
    left: 0;
    width: 100%;
    margin-top: 4em;
    padding-top: 1em;
    padding-bottom: 1em;
    text-align: center;
}