@font-face {
    font-family: 'Playfair Display';
    src: url('./fonts/PlayfairDisplay-Regular.woff2') format('woff2'), url('./fonts/PlayfairDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

* { box-sizing: border-box; }

body {
    font-family: 'Playfair Display', sans-serif;
    background: #EEEBE6;
    color: #830404;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    text-align: center;
    padding: 50px 20px;
}

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

h2 {
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    font-weight: normal;
    font-size: 2.5em;
}

header .logo {
    width: 230px;
}

footer .social {
    margin-top: 10px;
}

@media only screen and ( max-width: 600px ) {
    h2 { font-size: 1.5em; }
}

@media only screen and ( max-width: 400px ) {
    body { padding: 30px 20px; }
    header .logo { width: 180px; }
    h2 { font-size: 1.5em; }
    footer { font-size: 0.85em; }
}