/* Normalize */

html,
body {
    font-size: 15px;
    color: #2a2725;
    background-color: #f7f4f0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    border: 0;
    margin: 0;
    padding: 0;
    position: relative;
}


/* Page setup */

.home-container {
    max-width: 864px;  /* 800px + 2rem, usually */
    min-height: 100vh;
    margin: 0 auto;
    padding: 2rem 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

/* Monogram */

#header {
    text-align: center;
}

.monogram {
    width: 32px;
}

/* Text */

.text {
    padding: 0 2rem;
    margin: 0.5rem 0 0;
    text-align: justify;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.text__p:first-child {
    margin-top: 0;
}

.text__p:last-child {
    margin: 0;
}

.text__p--link {
    color: inherit;
}

.signature {
    margin: 1rem 0 0.5rem;
    height: 3rem;
}


/* Adjustments for small screens */

@media (max-width: 600px) {
    .home-container {
        justify-content: flex-start;
        padding: 2rem 0 4rem;
    }

    .text {
        text-align: left;
        hyphens: none;
    }
}
