html {
    font-family: "gargare-regular", serif;
    line-height: 130%;
}

body {
    margin: 0;
    padding: 0;
}

.body {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fbfbf4;
    flex-wrap: wrap;
} 

.logo {
    width: 100%;
    max-width: 800px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.title {
    width: 100%;
    max-width: 300px;
}

.border {
    margin: 1rem;
    width: 100%;
    border-bottom: 1px solid black;
}

.baseline {
    text-transform: uppercase;
}

.projets {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin: 1rem;
    margin-top: 2rem;
}


.projet {
    width: 100%;
}

.projet img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.projet p {
    margin: 1rem;
}

@media screen and (max-width: 1100px) {
    .projets {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 800px) {
    .projets {
        grid-template-columns: 1fr 1fr;
    }

    .projet img {
        height: 460px;
    }
}

@media screen and (max-width: 550px) {
    .projets {
        grid-template-columns: 1fr;
    }

    .projet img {
        height: 400px;
    }

    .title {
        margin: 2rem;
    }
}


footer {
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    margin-bottom: 2rem;
    border-top: 1px solid #000;
    text-align: center;
} 