/* style pour le index */

/* ------------------------------------------------------------------ General ---- */

.parent {
    display: flex;
    flex-direction: row;
  }
  
.child {
    flex-grow: 1;
    flex-basis: 0;
    /* border: 1px solid #000; utilisé pour reperer des eventuels problèmes, en voyant les limites du div */ 
}



#backgr {
    background-image: url("background_indexe.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.parent {
    display: flex;
    flex-direction: row;
  }
  
.child {
    flex-grow: 1;
    flex-basis: 0;
    /* border: 1px solid #000; utilisé pour reperer des eventuels problèmes, en voyant les limites du div*/ 
}

.primary {
    display: flex;
    background-color: white;
    width: 100%;
    height: 110vh;

}

.secondary {
    display: flex;
    background-color: rgb(221, 241, 240);
    width: 100%;
    height: 110vh;
    align-items: center;
}

.hov{
    transition: 0.2s;
}

.hov:hover{
    transform: scale(1.15);
    -webkit-filter: drop-shadow(0px 0px 14px rgb(90, 90, 90));
    filter: drop-shadow(0px 0px 14px rgb(90, 90, 90));
}

.hov2{
    transition: 0.2s;
}

.hov2:hover{
    transform: scale(1.15);
    -webkit-filter: drop-shadow(0px 0px 9px rgb(66, 66, 66));
    filter: drop-shadow(0px 0px 9px rgb(66, 66, 66));
}

/* ----------------------------------------------------------------- Texte 1 ---- */

.texte1 {
    text-align: center;
    vertical-align: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
    padding-left: 30vh;
    padding-right: 30vh;
    text-shadow: 0 0 25px #4d4d4d;
}

.texte1 p {
    font-size: 30px;
}

.texte1 h1 {
    font-size: 50px;
}

/* ------------------------------------------------------------------ Bloc 1 ---- */

.bloc1 {
    margin: 20vh;
    margin-left: 12vh;
    margin-bottom: 30vh;
    align-items: center;
    font-size: 35px;
    height: 60vh;
}

.img1 {
    text-align: center;
    line-height: 60vh;
    font-family: "Ceviche One", cursive;
    font-size: 250px;
    
}

.img1 a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    -webkit-text-stroke: 5px black;
    transition: 0.25s;
}

.img1 a:hover{
    font-size: 275px;
    text-shadow: 0 0 25px #757575;
}

.txt1 {
    text-align: center;
    margin: auto;
}

/* ------------------------------------------------------------------ Bloc 2 ---- */

.bloc2 {
    margin: 20vh;
    margin-left: 30vh;
    margin-bottom: 30vh; 
    align-items: center;
    font-size: 35px;
    height: 60vh;
}

.img2 {
    display: flex;
    align-content: center;   
}

.img2 img{
    width: auto;
    height: 30vh;
    margin-left: 23vh;
}

.txt2 {
    text-align: center;
    margin: auto;
}

/* ------------------------------------------------------------------ Bloc 3 ---- */

.bloc3 {
    margin: 20vh;
    margin-right: 27vh;
    margin-bottom: 30vh; 
    align-items: center;
    font-size: 35px;
    height: 60vh;
}

.img3 {
    display: flex;
    align-content: center;   
}

.img3 img{
    width: auto;
    height: 35vh;
    margin-left: 13vh;   
}

.txt3 {
    text-align: center;
    margin: auto;
}