.svg_1 {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
}


h2 {
    font-family: "Goldman";
    color: #f0ebd8;
    font-size: 5rem;
    text-align: center;
    align-items: center;
    margin-top: 10%;
}


body {
    font-family: "Goldman";
    background-color: #142b4d;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;

}

/* 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: 1;
    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;
}

.balisetext {
    font-family: 'Goldman';
    color: #f0ebd8;
    font-size: 3rem;
    text-align: center;
    align-items: center;
}

main {
    flex-grow: 1;
    height: auto;
    z-index: 1;
    /* border: green solid; */
}

@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;
    }

    a {
        font-size: 1.5rem;
        text-decoration: none;
        color: #f0ebd8;
    }
}

.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;
}

.progress-bar {
    background: #959595;
    width: 600px;
    height: 10px;
    border-radius: 5px;
}

.progress-bar div {
    height: 10px;
    border-radius: 5px;
    width: 0%;
}

.progress-bar div span {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #142b4d;
    float: right;
    margin-top: -15px;
    margin-right: -20px;
    color: #f0ebd8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.gp {
    background: #00bcd4;
    animation: gp 3s forwards;
}

.graphic {
    background: #00bcd4;
    animation: graphic 3s forwards;
}

.htmlcss {
    background: #00bcd4;
    animation: htmlcss 3s forwards;
}

.python {
    background: #00bcd4;
    animation: python 3s forwards;
}

.php {
    background: #00bcd4;
    animation: php 3s forwards;
}

.gp span {
    border: 1px solid #00bcd4;
}

.graphic span {
    border: 1px solid #00bcd4;
}

.htmlcss span {
    border: 1px solid #00bcd4;
}

.python span {
    border: 1px solid #00bcd4;
}

.php span {
    border: 1px solid #00bcd4;
}

@keyframes gp {
    100% {
        width: 90%;
    }
}

@keyframes graphic {
    100% {
        width: 70%;
    }
}

@keyframes htmlcss {
    100% {
        width: 65%;
    }
}

@keyframes python {
    100% {
        width: 85%;
    }
}

@keyframes php {
    100% {
        width: 40%;
    }
}