/*Matias Serrano Grilo
  Le 09 janvier 2025
  Projet du module 293 page des style css de la page d'accueil
  */
#img_accueil {
    background-image: url(../img/image_site_web/page_0_accueil/image_p0_background.jpg);
    margin: 0;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    padding-top: 15%;
}

h1 {
    text-align: center;
    font-size: 8em;
    background-color: black;
    padding-left: 150px;
    padding-right: 150px;
    border-radius: 15px;
    color: white;
}

@media screen and (max-width: 1000px) {
    h1 {
        font-size: 4em;
        padding-left: 75px;
        padding-right: 75px;
    }

}