* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "arboria-book";
    font-style: normal;
    font-weight: 400;
    src: url("/parkeerpaginas/fonts/arboria-book-webfont.woff2") format("woff2"), url("/parkeerpaginas/fonts/arboria-book-webfont.woff") format("woff");
}

@font-face {
    font-family: "arboria-medium";
    font-style: normal;
    font-weight: 400;
    src: url("/parkeerpaginas/fonts/arboria-medium-webfont.woff2") format("woff2"), url("/parkeerpaginas/fonts/arboria-medium-webfont.woff") format("woff");
}

.parkeerpagina {
    margin: 0;
    height: 100%;
    background-image: url('/img/1.png');
    background-size: cover;
    overflow: hidden;
}

.container {
    font-family: arboria-book, sans-serif;
    font-size: 1.7em;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-position: center center;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.slogan {
    text-align: center;
    background: #2B2B2A;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    min-height: 60px;
}

.slogan p {
    margin-top: -6px;
}

.logo {

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    position: relative;
    z-index: 999;
}

.disclaimer {

    width: 100%;
    min-height: 100%;
    display: flex;
    height: calc(100vh - 210px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.link {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 60px;
    position: fixed;
    bottom: 0;
}

.link a {
    color: white;
    text-decoration: none;

}

.gradient {
    position: absolute;
    margin-top: -60px;
    display: flex;
    align-items: center;
}

.information {
    position: absolute;
    z-index: 99;
}

.information h1 {
    line-height: 2em;
    font-size: 2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: arboria-medium, sans-serif;
}

svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .information h1 {
        font-size: 7vw;
    }

    .information p {
        font-size: 20px;
    }

    .slogan {
        font-size: 20px;
    }

    #logo_image {
        height: 60px;
    }

    .logo {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .link a {
        font-size: 20px;
    }
}