/* Page project1 */


.svg_1 {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    overflow: hidden;

}

.svg_2 {
    width: 100%;
    overflow: hidden;
}



/* 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;
}

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 */

.barredenav {
    position: absolute;
    top: 0;
    width: 100%;
    flex-grow: 1;
    height: auto;
    z-index: 1;

    /* border: green solid; */
}

/* Corps de la page  */

body {
    font-family: "Goldman";
    background-color: #142b4d;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* 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;
    margin-top: 10%;
}

/* 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;
    z-index: 3;
    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; */
}



/* Mes projets */

.a1 {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.project_1 {
    /* border: red solid; */
    display: inline;
    text-align: justify;
    color: #f0ebd8;

    font-size: 1.3em;

    vertical-align: top;
    margin-left: 5%;
    margin-right: 5%;
}

.photo {
    flex-direction: column;
    margin-right: 2%;
}

.photo img {
    transition: transform .5s;
    width: 100%;
}

.photo img:hover {
    transform: scale(1.5);
}

@media screen and (max-width: 1000px) {
    .balisetext {
        font-family: 'Goldman';
        color: #f0ebd8;
        font-size: 2rem;
        text-align: center;
        align-items: center;
    }

    .container {
        width: 100%;
        height: 100vh;
        background: #142b4d;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .svg_1 {
        display: none;
    }

    .svg_2 {
        display: none;
    }


    h2 {
        font-family: 'Goldman';
        color: #f0ebd8;
        font-size: 3rem;
        text-align: center;
        align-items: center;
    }

    .navbar {
        flex-direction: column;
        padding-top: 1.5em;
        z-index: 2;
    }

    a {
        font-size: 1.5rem;
        text-decoration: none;
        color: #f0ebd8;
    }

    .a1 {
        flex-direction: column-reverse;
    }

    .photo img:hover {
        transform: none;
    }

    .photo {
        margin-left: auto;
        margin-right: auto;
        width: 60%;
    }
}

.container {
    width: 100%;
    height: 100vh;
    background: #142b4d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skills h3 {
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 5px;
    color: #f0ebd8;
    font-size: 16px;
}