body {
    padding: 0px;
    margin: 0px;
}

.intestazione {
    height: 100vh;
    width: 100vw;
    position: relative;
}

.intestazione img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.text {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 110px 30px 110px 30px;
    z-index: 1;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.text .text-container {
    margin: 0 auto;
    max-width: 1000px;
}

.text .text-container p.label {
    margin-bottom: 60px;
    font-size: 35px;
    line-height: 1.1;
    font-family: helvetica;
    color: #000;
    text-align: center;
    text-transform: uppercase;
}

.text .text-container p {
    margin-top: 60px;
    font-size: 25px;
    line-height: 1.2;
    font-family: helvetica;
    color: #000;
    text-align: center;
}

.text .text-container img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.contenuto {

}

.contenuto img {
    width: 100%;
    display: block;
}

.contenuto .wrapper {
    background-color: #e21f7d;
    padding: 60px 15%;
}

.contenuto .wrapper p {
    font-size: 25px;
    line-height: 1.2;
    font-family: helvetica;
    color: #000;
}

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

    .text .text-container p {
        font-size: 18px;
        line-height: 1.2;
    }

    .contenuto .wrapper {
        background-color: #e21f7d;
        padding: 30px 30px;
    }

    .contenuto .wrapper p {
        font-size: 18px;
        line-height: 1.2;
    }

}