@charset "utf-8";
/* CSS Document */

/*taille de base pour les gros écrans*/
@media only screen and (min-width:900px) 
{body {font-size: 100%;
}p{font-size:100%;	
}h1 {font-size:150%;
}h2 {font-size:90%;
}h3 {font-size:90%;}}
/*taille pour les écrans moyens et tablettes*/
@media only screen and (max-width:900px) 
{body {font-size: 80%;
}p{font-size:80%;	
}h1 {font-size:80%;
}h2 {font-size:80%;
}h3 {font-size:80%;}}
/*taille pour les téléphones*/
@media only screen and (max-width:450px) 
{body {font-size: 70%;
}p {font-size:75%;
}h1 {font-size:90%;
}h2 {font-size:75%;
}h3 {font-size:75%;}}