@font-face {
    font-family: 'robotolight';
    src: url('../fonts/Roboto-Light.woff2') format('woff2'), url('../fonts/Roboto-Light.woff') format('woff'), url('../fonts/Roboto-Light.ttf') format('ttf'), url('../fonts/Roboto-Light.eot') format('eot');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto-Regular.ttf') format('ttf'), url('../fonts/Roboto-Regular.eot') format('eot');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotobold';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff'), url('../fonts/Roboto-Bold.ttf') format('ttf'), url('../fonts/Roboto-Bold.eot') format('eot');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'robotoregular';
    background-color: #f2efe4;
    color: #007fbe;
}

a {
    text-decoration: none;
    color: #007fbe;
}

p {
    font-size: 24px;
    font-family: robotobold;
}

.container {
    display: flex;
    height: 100%;
}

.contingut {
    width: 100%;
    height: auto;
}

.contingut img.logo {
    display: block;
    height: auto;
    object-fit: cover;
    margin: 50px auto 0;
    max-width: 100%;
    position: absolute;
    bottom: 0;
}

.contingut .dades {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.contingut .dades div {
    margin: 0 20px;
}

.contingut .dades span {
    font-family: robotobold;
}

.contingut {
    text-align: center;
}

@media  (max-width: 1999px) {

    .contingut .dades {
        flex-wrap: wrap;
    }

    .contingut .dades div {
        padding: 4px;
    }
}

@media  (max-width: 991px) {
    .container {
        display: block;
    }
}