body {
    font-family: 'Raleway', sans-serif;
    width: 375px;
    padding: 10px;
    background-color: aliceblue;
}

.layout {
    display: flex;
    justify-content: center;
    align-content: center;
}

h1,
h2 {
    text-align: center;
}

h1 {
    color: DodgerBlue;
}

h2 {
    color: DodgerBlue;
}

p {
    text-align: justify;
    padding-left: 15px;
    padding-right: 15px;
}

.alignp {
    text-align: center;
}

img {
    height: 80%;
    width: 80%;
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

iframe {
    width: 80%;
    height: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
    margin-bottom: 50px;
    margin-top: 30px;
}

.bar {
    border-top: 3px solid DodgerBlue;
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.bar2 {
    border-top: 2px solid DodgerBlue;
    width: 10%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}




/* ---------------------------------Bouton----------------------------------- */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.buttons {
    margin: 10%;
    text-align: center;
}

.btn-hover {
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align: center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-9 {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);

}

/* ---------------------------------Desktop----------------------------------- */

@media screen and (min-width: 500px) {
    body {
        width: 100vw;
        height: 100vh;


    }


    img {
        height: 100%;
        width: 100%;
        grid-area: img;
    }
      .bar2 {
        border-top: none;
    }
   .alignp {
    text-align: left;

}
    
    h1,
h2 {
    text-align: left;
    padding-left: 80px;
}
    p{
       text-align: justify;
    padding-left: 80px;
    padding-right: 300px; 
        
    }
    iframe {
    width: 90%;
    height: 20%;
    margin-bottom: 10px;
    
}
    .bar {
    border-top: 3px solid DodgerBlue;
    width: 80%;
    display: block;
    margin-left: 50px;
    margin-top: 20px;
}
    .layout{
        display: block;
        padding-left: 80px;
    }
    
    
    /* ---------------------------------Grid----------------------------------- */
    .grid{
        display: grid;
        grid-template-columns: 0.5fr 1fr;
        grid-template-areas: 
            " img tit "
            " img txt "
            " img bar "
            " img lie "
            " img pri "
            " img hor "
            " img bou ";
    }
  
    h1{
        grid-area: tit;
    }
    #txtgrid{
        grid-area: txt;
    }
    #lieu{
        grid-area: lie;
    }
    #prix{
        grid-area: pri;
    }
    #horaires{
        grid-area: hor;
    }
    #boutgrid{
        grid-area: bou;
    }
    #bargrid{
        grid-area: bar;
    }
    
