@font-face {
    font-family: 'Oswald-Regular';
    font-style: normal;
    font-weight: 400;
    src: url('/font/Oswald-Light.ttf') format('truetype');
}

container {
    margin: 0;
    padding: 0;
    display: block;
    max-width: 90vw;
}

body {
    font-family: 'Oswald-Regular';
    /* Gebruik het lettertype */
    background: radial-gradient(circle, #666, #111);
    color: #eee;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

img {
    width: 30vw;
    margin-bottom: 20px;
    background: radial-gradient(circle, #fff, #888);
    border-radius: 10px;
}

div {
    width: 100%;

}

h1 {
    font-size: 2vw;
}

p {
    font-size: 1vw;
}

footer {
    width: 100%;
    position: absolute;
    bottom: 1vw;
    font-size: 1vw;
    text-align: center;
}


pre {
    margin:0;
    padding: 0;;
    font-family: 'Oswald-Regular';
    font-size: 1.5vw;
}

@media screen and (max-width: 767px) {

    img {
        width: 100%;
        margin-bottom: 20px;
        background: radial-gradient(circle, #fff, #888);
        border-radius: 10px;
    }

    div {
        width: 100%;
        max-width: 800px;
    }

    h1 {
        font-size: 6vw;
    }

    p {
        font-size: 4vw;
    }

    footer {
        width: 100%;
        position: absolute;
        bottom: 30vw;
        font-size: 3vw;
        text-align: center;
    }


    pre {
        font-family: 'Oswald-Regular';
        font-size: 5vw;
    }
}