/* Google Fonts */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300|Teko:700");

html {
    font-size: 62.5%;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font: 300 1.8rem 'Roboto', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    background-color: #514F59;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    flex-direction: column;
}

h1,
h2 {
    font: 700 4rem 'Teko', Helvetica, Arial, sans-serif;
    margin: 0;
    text-align: center;
}

h2 {
    color: #E1B07E;
}

header,
footer {
    min-height: 50px;
    text-align: center;
    background-color: #E1B07E;
    color: #514F59;
}

.container__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin: 0 auto;
    flex-grow: 1;
}

footer .copyright p {
    font: normal 1.6rem 'Teko', Helvetica, Arial, sans-serif;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 50px;
}