/* Titres centraux */
.main{
    font-family: Verdana, Sans-Serif;
}

.main_title{
    
    font-size: 50px;
    text-align: center;
    text-shadow: 5px 5px 10px white;
}
.second_title{
    
    font-size: 30px;
    text-align: center;
    text-shadow: 5px 5px 10px white;
    margin-bottom: 1em;
}
.third_title{
    
    font-size: 25px;
    text-align: center;
    
}

/* Paragraphe avec image */
.paragraph {
    
    padding: 1em;
    max-width:75vw; 
    margin:auto; 
    text-align: justify; 
    min-width:270px;
}

a:link {
    color:blue;
    text-decoration: none;
}
a:visited{
    
    text-decoration: none;
}

a:hover {
  
  
}
/* Responsive mobile */

@media screen and (max-width: 768px) {
    .paragraph img {
        float: none;
        display: block;
        margin: auto;
        width: 80%;
    }
    
}