body {
    margin: 0;
    font-family:'Lato', sans-serif;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/common/background-about.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Section Project */

h1 {
    font-family: 'DM Serif Display';
    font-size: 72px;
    font-weight: 400;
    text-align: center;
    color: #002AB4;
    padding-bottom: 56px;
}

.project-section {
    background-image: 
        url('../images/index/flower-five-petal.svg'),
        url('../images/index/image-card.webp');

    background-position: 
        left -5% bottom -20%,
        right 20% top 5%;

    background-size: 
        300px auto,
        100px auto;

    background-repeat: 
        no-repeat,
        no-repeat;
}

.project ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.project li {
    display: block;
    width: 100%;
    text-align: center;
}

.project li img {
  width: 100%;
  display: block;
}

.project div {
    display: flex;
    justify-content: center;
}

/* ----- RESPONSIVE ----- */

@media (max-width: 960px) {
    h1 {
        font-size: 64px;
    }
}

@media (max-width: 720px) {
    h1 {
        font-size: 56px;
        text-align: center;
    }

    .project ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-section {
        background-image: none;
    }
}

@media (max-width: 540px) {
    h1 {
        font-size: 48px;
    }
}

@media (max-width: 376px) {
    h1 {
        font-size: 40px;
    }
}