p {
    color:darkblue;
}

html {
    height: 100%;
}

body {
    height: 100%;
    background-color: lightgray;
}

.contenitore {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sinistra {
    display: flex;
    background-color: lightgray;   
    text-align: center;
    flex-basis: 0px;
    flex-grow: 1;
    flex-shrink: 100;
    width: 100%;
}

.centro {
    display: flex;
    background-color: linen;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-basis: 800px;
    flex-grow: 0.2;
    flex-shrink: 1;
    width: 100%;
}

.destra {
    display: flex;
    background-color: lightgray;
    text-align: center;
    flex-basis: 0px;
    flex-grow: 1;
    flex-shrink: 100;
    width: 100%;
}

.contint {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.figlioint {
    display:flex;
    color:darkblue;
    background-color: lightskyblue;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 0px;
    flex-grow: 1;
    flex-shrink: 100;
    width: 100%;
}

.figlio1{
    display: flex;
    flex-direction: row;
    flex-basis: 0px;
    flex-grow: 1;
    flex-shrink: 100;
    width: 100%;
}
