* {
    font-family: 'Libre Baskerville', "Roboto", Cursive, Arial, Helvetica, sans-serif;
    background-color: rgb(51, 77, 66);
}

.building_page {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    line-height: 1.5em;
    /*poussé de la moitié de hauteur de viewport et tiré de la moitié de sa propre hauteur*/
    margin-top: 50vh;
    transform: translateY(-50%);
}

h1 {
    font-family: 'Libre Baskerville', "Roboto", Cursive, Arial, Helvetica, sans-serif;
    margin-top: 0;
    margin-bottom: 0.4em;
    line-height: 1.2em;
    letter-spacing: 0.2em;
    text-align: center;
}

.underline {
    font-style: normal;
    text-decoration: underline;
}

.subtext {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact {
    position: relative;
    border-style: solid;
    margin-top: 5em;
    padding-left: 3em;
}

.contact_title {
    position: absolute;
    top: 0;
    left: 5%;
    transform: translatey(-150%);
    font-weight: 600;
    padding: 0 2em;
}


/* ----------- iPad 1, 2, Mini and Air ----------- */


/* Portrait and Landscape */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .building_page {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        line-height: 1.5em;
        margin-top: 40%;
    }
}


/* ----------- iPad 3, 4 and Pro 9.7" ----------- */


/* Portrait and Landscape */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .building_page {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        line-height: 1.5em;
        margin-top: 40%;
    }
}


/* ----------- iPad Pro 10.5" ----------- */


/* Portrait and Landscape */

@media only screen and (min-device-width: 834px) and (max-device-width: 1112px) and (-webkit-min-device-pixel-ratio: 2) {
    .building_page {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        line-height: 1.5em;
        margin-top: 25%;
    }
}


/* ----------- iPad Pro 12.9" ----------- */


/* Portrait and Landscape */

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
    .building_page {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        line-height: 1.5em;
        margin-top: 25%;
    }
}