
/* ==================== Projet : home | Fichier : bandeau.css ==================== */


.bandeau {
    background-color: var(--secondary);
    color: var(--background);
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.bandeau p {
    font-size: 14pt;
    color: var(--background);
    font-weight: 300;
    text-align: center;
    justify-self: center;
    align-self: center;
}

.bandeau > .return-home {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.bandeau > .return-home > p {
    margin-left: 5px;
}
/* ==================== Projet : home | Fichier : examples.css ==================== */


.examples > .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.examples > .grid > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.examples {
    font-size: 16pt;
}

.examples img {
    height: 300px;
    width: 350px;
    object-fit: cover;
}

.examples a {
    color: var(--primary);
    text-decoration: none;
}
/* ==================== Projet : home | Fichier : footer.css ==================== */


:root {
    --footer-padding: 20vw;
}

footer {
    width: calc(100% - 2 * var(--footer-padding));
    text-align: right;
    margin: 50px 0;
    padding: 0 var(--footer-padding);
}

footer > p {
    text-align: end;
}
/* ==================== Projet : home | Fichier : header.css ==================== */


:root{
    --header-gap: 50px;
    --header-h1-padding: 70px;
}

header {
    padding: 0 15vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--header-gap);
}

header > h1 {
    font-size: 35pt;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: var(--header-h1-padding) 0;
    padding-bottom: calc(var(--header-h1-padding) - var(--header-gap));
}

.resume p {
    font-size: 18pt;
}

img {
    height: 400px;
    border: solid 1px black;
}

@media screen and (max-width: 1300px) {
    img {
        height: 300px;
    }
}

header > .start {
    display: flex;
    justify-content: center;
    align-items: center;
}

header > .start > button {
    width: 300px;
}
/* ==================== Projet : home | Fichier : index.css ==================== */


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


main {
    padding: 0 20vw;
}

h3 {
    font-size: 24pt;
    font-weight: 400;
    margin: 15px 0;
}

p {
    font-size: 14pt;
    text-align: justify;
}

li {
    font-size: 14pt;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #777;
    margin: 50px 0;
}
