body {
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

* {
    margin: 0;
}

main > * {
    margin: 0 auto;
    text-align: center;
}

p, li {
    font-family: "Source Sans 3", sans-serif;
    
}

p {
    padding: 10px;
    text-align: left;
    line-height: 1.6;
    max-width: 65ch;
    margin: 0 auto;
}

body {
    height: 100vh;
}

body > main {
    text-align: right;
}

main {
    color: black;
    height: 100%;
    width: 40% ;
    background-color: white;
    margin :0 50px 0 auto;
    position: relative;
}

h1{
    font-style: italic;
    font-family: "Inter", sans-serif;
    font-weight: 150;

    padding-top: 15px ;
}

h2 {
    font-style: italic;
    font-family: "Inter",sans-serif;
    font-weight: 250;

    padding: 15px 0 0 0;
}

h3 {
    font-style: italic;
    font-family: "Inter",sans-serif;
    font-weight: 400;

    padding: 10px 0 0 0;
}

ul {
    text-align: left;
    line-height: 1.6;
    max-width: 65ch;
    margin: 0 auto;
}

main >section {
    margin-top: 50px
}

section > article {
    margin-top: 30px;
}

.footer-social {
    padding: 1rem 0;
    background-color: #f5f5f5; /* ou transparent si tu préfères */
    text-align: center;
    position: absolute;

    display: flex;

    justify-content: space-around;

    bottom: 0;
    left: 0;
    right: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;

    

    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons img {
    height: 28px;
    width: 28px;
    transition: transform 0.2s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}