* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    min-width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    /*text*/
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #323b3f;
    /*flex*/
    display: flex;
    flex-direction: row;
}

main {
    width: 100%;
    height: 100%;
    margin-top: 4em;
    margin-left: 2em;
    margin-bottom: 5em;
    margin-right: 3em;
}

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

.grid-col img {
    width: 13em;
    margin-top: 2em;
}

.grid {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.grid > * {
    /*margin-left: 1em;*/
}

/* typography*/

article {
    text-align: left;
    line-height: 1.8em;
}

article h1::after {
    content: ' ';
    display: block;
    border: 1.5px solid #F08118;
    background: #F08118;
    width: 2em;
    margin-top: 1.5em;
    margin-bottom: 1.8em;
}

h1 {
    font-weight: 700;
    padding-bottom: 0;
    font-size: 1.7rem;
    margin-top: 2em;
}

h2 {
    font-size: 1.3rem;
}

p {
    text-align: justify;
    text-justify: distribute;
}


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

a:hover {
    color: #6c6a6a;
}

.guest img {
    width: 80%;
    padding: 0;
    margin: auto;
    margin-top: 2em;
    float: none;

}

.guest h1 {
    margin-top: .5em;
    text-align: center;
    font-size: 1.7rem;
}

.guest h1::after {
    text-align: center;
    margin-bottom: 1em;
    margin-top: 0.5em;
}

.guest h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #b3b3b3;
}


main nav {
    margin: 3em;
}

.button {
   border-radius: 1em;
    padding: .5em;
    border: .15em #f8f8f8 solid;
    background: #f8f8f8;
    margin-bottom: 1em;
}

.button:active, .button:focus, .button:hover {
    border-color: #F08118;
}

#guests>h1, #workshops>h1 {
     font-size: 2.5rem;
     text-align: center;
    margin-bottom: 1.3em;
 }


.question {
    font-weight: 600;
    margin-block-start: 1em;
}

@media only screen and (min-width: 1200px) {
    main {
        margin-top: 0;
        margin-right: 16em;
        margin-left: 16em;
        height: 100%;
    }

    .guest img {
        width: 30%;
        padding-right: 1em;
        padding-bottom: .2em;
        float: left;
        margin-top: 0;
    }

    .guest h1 {
        text-align: right;
        margin-top: 2em;
    }

    .guest h1::after {
        text-align: center;
        margin-left: 30%;
        margin-top: 1.5em;
        margin-bottom: 1.8em;
    }

    #guests>h1, #workshops>h1 {
        font-size: 2.5rem;
        text-align: left;
    }
}