* {
    margin: 0;
    padding: 0;

    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;

    background-color: #DCD7C9;
}

header {
    height: 25vh;
    width: 100vw;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

header img {
    width: 16vw;
}

header h1 {
    margin-top: 1vh;

    font-weight: 600;

    color: #A27B5C;
}

section {
    width: 70vw;

    margin-bottom: 5vh;

    display: flex;
    flex-direction: column;

    padding: 8vw;

    border-radius: 10px;

    background-color: #2C3639;
}

section header {
    height: auto;
    width: auto;

    display: flex;
    flex-direction: row;

    justify-content: left;
    align-items: baseline;
}

.quote-start {
    margin-right: 1vw;

    font-size: 1.6rem;
    font-weight: 600;
}

section h3 {
    font-family: "Lato", sans-serif;
    font-weight: 300;

    color: #DCD7C9;
}

section h4 {
    margin: 2vh 0;

    font-family: "Lato", sans-serif;
    font-weight: 400;

    color: #A27B5C;
}

#invitation {
    width: 70vw;

    padding: 8vw;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    background-color: #31343E;
}

#invitation h1 {

    margin-bottom: 3vh;

    font-weight: 600;

    text-align: center;

    color: #A27B5C;
}

#invitation h3 {
    font-weight: 400;

    color: #DCD7C9;
}

#invitation h4 {
    font-weight: 300;

    color: #DCD7C9;
}

#map {
    width: 85vw;
    height: 50vh;

    margin-bottom: 8vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

#map iframe {
    width: 100%;
    height: 100%;
}

#face-book {
    width: 12vw;
    height: 7vh;

    margin-bottom: 5vh;
}

footer {
    height: 15vh;
    width: 100vw;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    background-color: #2C3639;
}

footer img {
    width: 8vw;

    margin-bottom: 1vh;
}

footer p {
    font-weight: 100;

    color: #DCD7C9;
}

@media screen and (min-width: 600px) {
    header {
        height: 40vh;

        margin-bottom: 10vh;
    }

    header img {
        width: 6vw;
    }

    header h1 {
        font-weight: 400;
    }

    section {
        width: 40vw;

        padding: 8vw;
        margin-bottom: 10vh;
    }

    section header {
        margin-bottom: 0;
    }

    #invitation {
        width: 40vw;

        padding: 8vw;
        margin-bottom: 10vh;
    }

    #invitation h1 {
        font-weight: 600;
    }

    #invitation h3 {
        padding-top: 3vh;
        font-weight: 400;
    }

    #invitation h4 {
        margin-bottom: 5vh;
    }

    #map {
        width: 55vw;
        height: 100vh;

        margin-bottom: 10vh;
    }

    #face-book {
        width: 6vw;

        margin-bottom: 15vh;
    }

    footer {
        height: 30vh;
    }

    footer img {
        width: 4vw;

        margin-bottom: 1vh;
    }

    footer p {
        font-weight: 100;

        color: #DCD7C9;
    }
}

@media screen and (min-width: 768px) {
    header {
        height: 40vh;

        margin-bottom: 5vh;
    }

    section {
        width: 45vw;

        margin-bottom: 5vh;
    }

    #invitation {
        width: 45vw;
    }

    #map {
        width: 60vw;
        height: 80vh;

        margin-bottom: 10vh;
    }

    #face-book {
        margin-bottom: 15vh;
    }

    footer {
        height: 30vh;
    }
}

/*@media screen and (min-width: 992px) {*/
/*}*/