@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';
}

a {
    text-decoration: none;
    color: #000;
}

.container {
    display: flex;
    height: 100%;
}

.contingut {
    width: 100%;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contingut img.logo {
    display: block;
    height: auto;
    object-fit: cover;
    margin: 40px auto;
    /*max-width: 20%;*/
}

.contingut .dades {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    margin: 0;
/*    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);*/
}

.contingut .dades > div {
    margin-bottom: 10px;
}

.contingut .dades span {
    font-family: robotobold;
}

.contingut p {
    font-size: 22px;
}

@media  (max-width: 1999px) {

    .contingut .dades {
        flex-wrap: wrap;
    }

    .contingut .dades div {
        padding: 4px;
    }
}

@media  (max-width: 1199px) {
    .contingut img.logo {
        max-width: 30%;
    }
}

@media  (max-width: 991px) {
    .container {
        display: block;
    }

    .banner, .contingut {
        width: 100%;
    }

    .banner {
        height: 35%;
    }

    .banner img {
        height: 100%;
    }

    .contingut img.logo {
        max-width: 40%;
    }
}