body {
    font-family: 'Varela Round', sans-serif;
}
hr {
    width: 50%;
}
p.foto {
    color: rgb(255, 255, 255);
}
.contenitore {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-auto-rows: minmax(100px, auto);
    grid-gap: 1em;
}
.contenitore>div {
    padding: 10px;
    border-radius: 10px;
}
.box1 {
    grid-column: 1/3;
    grid-row: 1/3;
    background-color: #E5722E;
    align-self: center;
    height: fit-content;
}
.box2 {
    grid-column: 3;
    grid-row: 1/3;
    background-color: #6d121291;
}
.box3 {
    align-self: end;
    grid-column: 3;
    grid-row: 3;
    background-color: #314075;
}
.box4 {
    align-self: center;
    grid-column: 1;
    grid-row: 3;
    background-color: #227B14;
}
.box5 {
    grid-column: 2;
    grid-row: 3;
    background-color: #fa0101;
    border: 6px ridge yellow;
    box-shadow: 10px 10px 5px rgba(68, 55, 62, 0.5);
}
.box6 {
    grid-column: 2/4;
    background-color: #E5722E;
    grid-row: 4;
}
.box7 {
    grid-column: 1;
    background-color: #548f07e1;
    grid-row: 4;
}
img.foto {
    width: 100%
}
.box-logo {
    width: fit-content;
    text-align: center;
}
.centrato {
    text-align: center;
}
@media screen and (max-width: 1200px) {
    .contenitore {
        display: block;
    }
    .descrizione-foto {
        display: none;
    }
    .contenitore>div {
        margin-top: 10px;
    }
}