body {
    margin: 0;
    padding: 0;
}

#main {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

#destinazione_container {
    min-width: 70%;
    max-width: 90%;
    margin: auto;
    width: max-content;
}

.main_titolo {
    margin-bottom: 20px;
    text-align: center;
}

#destinazione_container .row{
    justify-content: center;
}

.destinazione {
    padding: 25px 50px;
    margin: 15px;
    width: 100%;
}

.destinazione h5 {
    margin: 0;
    margin-top: 10px;
    margin-bottom: 5px;
}

.destinazione h1 {
    text-transform: uppercase;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -15px;
}

@media screen and (orientation: landscape) {
    .destinazione {
        width: 40%;
    }
}