#cadre {    
    display: grid;  
	grid-template-columns:  120px 50%-120px 1fr;
    grid-template-rows: auto ; /*15vh 30vh 15vh 45vh 20vh 2vh;*/
    grid-template-areas:  
          "logo slogan slogan"
          "st1 st1 ill1" 
          "st2 st2 st2"
          "ill2 ill2 ill2"
          "st3 st3 st3"
          "pied-page pied-page pied-page"; 
	justify-content: space-between;
	align-content: safe center;
    gap: 1px;    
    width: 95%;  
    margin: 10;  
    padding: 5px;  
}
#logo {  
    grid-area: logo;
    height: 15vh;
    min-height:120px;
	max-height:150px; 
}
#slogan {
	grid-area: slogan;
	display: flex;
	align-items: center;
	font-size: calc(100vw / 30);
	border: 3px solid green;
	border-radius: 10%;
}  
#st1 {  
    grid-area: st1; 
    display: flex;
	align-items: center;
    
}
#ill1 {
	grid-area: ill1;
	display: flex;
    align-items: center;
}
#st2 {  
    grid-area: st2;  
}
#ill2 {
	grid-area: ill2;
	text-align: center;
}
#st3 {  
    grid-area: st3;  
}
footer {  
    grid-area: pied-page;
    font-size: calc(100vw / 80);
} 
/* Mise en forme commune */  

#logo, #slogan, footer {  
    background-color: #eee;  
    text-align: center;  
} 
#st1,#st2,#st3 {
	text-align: center;
	border: 2px solid green;
	font-size: calc(100vw / 35);
}
.imgport {
	height: 90%;
	min-height:100px;
	max-height:300px;
	border-radius: 10%;
	border: 2px solid green;
}
.imgpays {
	width: 70%;
	min-width:200;
	max-width:700;
	min-height:200;
	max-height:400;
	border-radius: 10%;
	border: 2px solid green;
}
h1{
	color: green;
}
p {  
    padding:10;
    margin:10px;
    text-align: center; 
} 

/* Media Query smartphone   MOBILE FIRST:cf ci-dessus
@media only screen and (max-width: 768px)  { 
     #cadre {  
     }  
} */ 
 
/* Media Query écran tablette */  
@media only screen and (min-width: 768px)  { 
     #cadre {  
	    display: grid;  
		grid-template-columns:  25% 25% 50% ;
	    grid-template-rows: auto; /*20% 25% 45% 20% 5%;*/
	    grid-template-areas:  
	          "logo slogan slogan"
	          "st1 st1 st2" 
	          "ill1 ill1 ill2"
	          "st3 st3 st3"
	          "pied-page pied-page pied-page"; 
		justify-content: space-between;
		align-content: safe center;
	    gap: 5px;    
	    width: 95%;  
	    margin: 10;  
	    padding: 2px; 
     }
     .imgport{
     	display: flex;
		transform: translateX(30%);
     }
	 .imgpays {
		width: 95%;
		min-width:200;
		max-width:700;
	 }
	 #st1,#st2,#st3 {
		font-size: 1rem;
	} 
	}  
/* Media Query grand écran */  
@media only screen and (min-width: 1024px)  { 
     #cadre {  
     grid-template-columns: 30% 40% 1fr; 
     grid-template-rows: auto;
     grid-template-areas:  
          "logo slogan slogan"  
          "st1 st2 st3"
          "ill1 ill2 . "
          "pied-page pied-page pied-page"; 
     min-height: 100vh;
	 justify-content: space-between;
	 align-content: safe center;   
    }  
    #st1,st2,st3 {
		font-size: 1rem;
	}
	 .imgport{
	 	transform: translate(20%,0);
     }
	 .imgpays {
		width: 95%;
	 }  
	}  
