body {
    font-family: 'Arial', sans-serif;
    font-weight: initial;
    margin: 0;
    padding: 0;
    background-color: #0d0d0d;
}


.presentation-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.bienvenue, .infos {
    flex: 1;
    min-width: 300px;
}

.bienvenue {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.6;
}



h1{
    font-size: 85px;
    margin: 0;
    flex-grow: 1;
    text-align: center;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-style: normal;
}
h2 {
    font-size: 70px;
    text-align: center;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    color: black;
}

h3 {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-style: normal;;
    font-size: 45px;
    color: #f0f0f0;
}

h4 {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 35px;
    color: #f0f0f0;
}

h5 {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 30px;
    color: black;
}

p {
    font-size: 18px;
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-style: normal;
}

p ul li{
    font-size: 18px;
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-style: normal;
}

.logo {
    border: 2px solid #000;
    border-radius: 100%;
    float: left;
    margin-left: 0;
    transition: transform 0.3s; /* ajout d'une transition pour un effet smooth */
    margin-top: 2%;
}

.logo:hover{
    border-radius: 100px;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.2); /* agrandissement de 20% */

}

.logos {
    border-radius: 10%;
    float: right;
    width: 210px;
    height: auto;
    margin-left: 0;
    transition: transform 0.3s; /* ajout d'une transition pour un effet smooth */
    margin-top: 2%;
}

.logos:hover{
    border-radius: 100%;
    transform: scale(1.5); /* agrandissement de 20% */
}

body, h1, nav {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}



.footer {
    background: #0d0d0d;
    padding: 20px 10px;
    color: #d6249f;
    font-family: "Source Code Pro", monospace;
    text-align: center;
    border-top: 2px solid #000;
    box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.6);
    position: relative;
    margin-top: 20px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.socials {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.socials a {
    display: inline-block;
    transition: transform 0.3s, filter 0.3s;
}

.socials a:hover {
    transform: scale(1.1);
    filter: brightness(1.3);
}

.socials img {
    width: 30px;
    height: 30px;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.socials img:hover {
    filter: none;
}