* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #faf8f5;
    font-family: 'Georgia', 'Times New Roman', 'Palatino', serif;
    line-height: 1.6;
    padding: 2rem 1rem;
}

.container {
    max-width: 860px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-weight: normal;
    text-align: center;
    color: #646464;
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    line-height: 1.2;
}

h1 {
    font-weight: bold;
    font-size: 70px;
    margin-top: 0.5em;
    margin-bottom: 0.25em;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

hr {
    border: none;
    height: 2px;
    background: #c0b7a8;
    max-width: 120px;
    margin: 0.8rem auto 2rem auto;
}

p {
    text-align: justify;
    font-size: 16px;
    color: #333;
    margin-bottom: 1.2rem;
    line-height: 1.65;
    text-indent: 1.8em;
}

@media (max-width: 640px) {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
    p {
        font-size: 15px;
    }
}