@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');

@font-face {
    font-family: "Playball";
    src: url("../fonts/Playball-Regular.ttf");
}

body {
    font-family: 'PT Serif', serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-header {
    background-color: #090946;
}

.header-content {
    width: 1140px;
    margin: 0 auto;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-content {
    background-image: url('../img/bg-main.webp');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    flex: 1;
}

.site-content-ml {
    background-color: #0000b2;
}

.site-container {
    width: 1140px;
    margin: 0 auto 40px;
    background-color: #090946;
}

.intro {
    font-size: 16px;
    text-align: justify;
    color: #ffffff;
    padding: 60px;
}

.card-description {
    padding-left: 52px;
}

.titre-jaune {
    font-family: "Playball", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #fff000;
    margin: 0px;
}

.voyant-description {
    color: #ffffff;
    margin-top: 0px;
}

.img-fluid {
    width: 100%;
}

.site-footer {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #090946;
}
.site-footer p {
    color: #ffffff;
    font-size: 15px;
    text-align: center;
    margin: 0;
}

.site-footer p a {
    color: #2199e8;
    text-decoration: none;
}

.site-footer p a:hover {
    text-decoration: underline;
}

.legacies-h1 {
    font-family: "Playball", sans-serif;
    font-size: 40px;
    text-align: center;
    font-weight: 400;
    color: #fff000;
    margin: 0px;
}

.ml-container {
    margin-bottom: 60px;
}

.ml-container h2, .ml-container h3 {
    color: #fff000;
}

.ml-container ul {
    list-style-type: none;
    padding-left: 0px;
}

.ml-container ul li {
    font-size: 18px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.ml-container ul li:before {
    position: absolute;
    content: " ";
    display: inline-block;
    width: 7px;
    height: 7px;
    left: 0;
    top: 7px;
    background-color: #ba8660;
    border-radius: 5px;
}


/*============================ RESPONSIVE ============================*/

@media screen and (max-width: 1279px) {
    .site-container, .header-content {
        width: 80%;
    }
}


@media screen and (max-width: 760px) {
    .titre-jaune {
        font-size: 2.2rem;
    }

    .card-image {
        width: 40%;
        text-align: center;
    }

    .card-description {
        width: 60%;
        padding-left: 0px;
    }
}

@media screen and (max-width: 480px) {
    .site-container, .header-content {
        width: 90%;
    }

    .intro {
        padding: 25px 30px;
    }

    .card-image {
        width: 45%;
    }

    .card-description {
        width: 55%;
    }
}