/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    background-color: #F5F1EE;
    color: #562D0F;
    word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: 100%;
}

ul, ol {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: #562D0F;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

textarea {
    resize: none;
}

input:focus, textarea:focus {
    outline: none;
}
