@import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap');

body{
    margin: 0;
    background-image: url(fuji.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.menu{
    display: flex;
    justify-content: space-evenly;
    list-style: none; /* enlève les puces */
    font-family:    "Knewave" , system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
}

.menu-link{
    /* met en forme les liens */
    color: white;
    text-decoration: none;
    padding: 10px 25px; /*horizontal, vertical */
}

/* un peu de css permet d'ajouter un effet 
au survol. notez l'ajout d'un padding dans le 
.menu-link */

.menu-link:hover{
    background-color: brown;
    color: black;
    border-radius: 10px;
}

.logo{
    border-radius: 50%;
    height: 350px;
    width: 350px;

}
.content{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: azure;
    padding: 100px 50px;
}

.main-title{
   font-family:    "Knewave" , system-ui; 
   font-size: 50px;
   font-weight: 400px;
}
.punchline{
    font-size: 30px;
}
.main-content{
    max-width: 400px;
}