@font-face {
    font-family: 'Open Sans';
    src: url('fonts/opensans-regular.woff2') format('woff2'),
        url('fonts/opensans-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Open Sans', sans;
    color: #000;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
h1 {
    font-size: 3em;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    text-align: center;
    margin: 1em;
}
@media all and (max-width:600px) {
    h1 {
        font-size:2.5em;
    }
}
@media all and (max-width:400px) {
    h1 {
        font-size:1.5em;
    }
}
