@font-face {
    font-family: Oswald;
    src: url('/fonts/OswaldVF.woff2') format('woff2'),
        url('/fonts/OswaldVF.woff') format('woff');
    font-weight: 200 700;
}

html,
body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Oswald;
}

body {
    background-color: #efefef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    margin: 0;
    padding: 0;
    font-weight: 200;
    animation: 2s ease-out scale-head forwards;
}

@keyframes scale-head {
    0% {
        color: #eee;
        font-weight: 200
    }

    100% {
        color: #000;
        font-weight: 700
    }
}

a {
    display: block;
}