@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&family=Sofia+Sans:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&family=Sofia+Sans:wght@400;800&display=swap');

body{
    margin: 0;
    padding: 0;
    font-family: 'Sofia Sans', sans-serif;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111;
    padding: 10px;
    color: #fff;
}

.navbar img{
    max-height: 40px;
}

.navbar p{
    text-align: center;
}

.navbar button{
    color: #fff;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: none;
}

.navbar button:hover{
    background: #fff;
    color: #000;
}

h1{
    text-align: center;
}

.haress {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

.card {
    width: 300px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 10px;
    margin: 40px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card-contenu {
    padding: 20px;
}

.card h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.card button{
    width: 100%;
    padding: 10px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    background: none;
}

.card button:hover{
    background: #fff;
    color: #000;
}

.extension {
    display: block;
}

.extension.cachee {
    display: none;
}

.bouton-couleur {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 10px;
    border: 2px solid #000000;
    border-radius: 5px;
    background: none;
  }

.bouton-couleur:hover {
    background-color: #000;
    color: #fff;
}