@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


* {
    margin: 0px;
    padding: 0px;
}

body,
p,
#list li {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: white;
    letter-spacing: 0.3px;
}


h1,
h2 {
    font-family: 'Italiana', sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.3px;
}




body {
    background-color: black;
}


p {
    padding-top: 15px;
}




.navbar {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 3px solid white;
}

.navbar img {
    height: 70px;
    width: 150px;
}

.navbar p {
    padding: 0px;
}

.bouton-couleur {
    color: white;
    padding: 12px;
    border: 2px solid white;
    border-radius: 6px;
    background: none;
}

.bouton-couleur:hover {
    background-color: white;
    color: #ff2525;
}




h1 {
    font-size: 48px;
    text-align: center;
    text-shadow: 2px 2px 2px #ff2525;
    color: white;
    padding: 40px 0 10px 0;
}




.container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}




.card {
    width: 350px;
    background-color: black;
    color: #fff;
    border: 3px solid white;
    border-radius: 13px;
    margin: 40px;
}

.card img {
    width: 350px;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-contenu {
    padding: 20px;
}

h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.card button {
    width: 100%;
    padding: 10px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;

}

.card button:hover {
    color: #ff2525;
}


.extension {
    display: block;
}

.extension.cachee {
    display: none;
}




#list {
    list-style: none;
}

#list li {
    padding: 15px 0px 0px 20px;
}

#list li span {
    display: inline-block;
    padding-left: 50px;
    background: url("images/star-white.png") left center no-repeat;
    background-size: 27px 25px;
}




footer {
    width: auto;
    border-top: 3px solid white;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}



.social-icons a {
    text-decoration: none; /* Supprime les soulignements */
    outline: none; /* Supprime les contours */
}


.social-icons i {
    font-size: 2.5em;
    color: #ffffff;
    transition: filter 0.3s ease;
    padding: 25px;
    --fa-animation-duration: 2s;
}

.social-icons i:hover {
    color: #ff2525;
}


#droits-reserves {
    padding: 25px;
    align-self: center;
    font-size: 18px;
}