.svg_1 {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
}

.svg_2 {
    width: 100%;
    position: relative;
    bottom: 0;
}


/* Corps de la page  */

body {
    font-family: "Goldman";
    background-color: #142b4d;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;

}

/* Style de la balise h1 (Portfolio) */

h1 {
    font-family: 'Rajdhani';
    color: #f0ebd8;
    font-size: 5rem;
    text-align: center;
    align-items: center;
    margin: 2em;
}

/* Titres pages (ex : Mes projets, etc...) */

h2 {
    font-family: 'Goldman';
    color: #f0ebd8;
    font-size: 5rem;
    text-align: center;
    align-items: center;
}

/* Barre de navigation  */

.navbar {
    color: #f0ebd8;
    display: flex;
    height: 100px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;

    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

nav a {
    color: #f0ebd8;
}


.navbar div {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

a {
    font-size: 1.98rem;
    text-decoration: none;
    color: #f0ebd8;
}

/* Quand on va sur un élément de la barre de navigation */

a:hover {
    text-decoration: underline;
}

/* Concernant les éléments de la page lorsqu'ils sont redimentionnés */

main {
    flex-grow: 1;
    height: auto;
    z-index: 1;
    /* border: green solid; */
}

/* Responsive */



/* --- Page "Qui suis-je ?" --- */



p.about_1 {
    /* border: red solid; */
    display: inline;
    color: #f0ebd8;
    width: 40%;

    font-size: 1.3em;
    text-align: justify;

    vertical-align: top;
    margin: 0;

}


.pdp {
    width: 53%;
}

.pdp img {
    width: 100%;
    height: auto;

}

.b1 {
    width: 100%;
    display: flex;
    justify-content: space-around;
}


/* color: #f0ebd8 #142b4d */

@media screen and (max-width: 900px) {
    h1 {
        font-family: 'Rajdhani';
        color: #f0ebd8;
        font-size: 2rem;
        text-align: center;
        align-items: center;
    }


    h2 {
        font-family: "Goldman";
        color: #f0ebd8;
        font-size: 5rem;
        text-align: center;
        align-items: center;
        margin-top: 10%;
    }

    .navbar {
        flex-direction: column;
        padding-top: 1.5em;
    }

    .svg_2 {
        display: none;
    }

    .svg_1 {
        display: none;
    }

    a {
        font-size: 1.5rem;
        text-decoration: none;
        color: #f0ebd8;
    }


    .b1 {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
    }


    p.about_1 {
        width: 90%;
        padding: 1em;
    }

    .pdp {
        margin-left: auto;
        margin-right: auto;
    }


}