
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*{
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 230vh; 
    background-color: #0a0a0a; 
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), radial-gradient(circle at center, #111111 0%, #111111 100%);
    background-size: 20px 20px, 100% 100%;
    background-repeat: repeat, no-repeat;
    background-attachment: fixed;
    color: white; 
    font-family: "Inter";
    display: flex;
    align-items: center;
    flex-direction: column;
}

h2{
    color: #8ea4d2;
    font-size: 30px;
    margin: 0;
    margin-bottom: 1rem;
}

p{
    margin: 0;
}



.title{
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title a{
    color: rgba(255, 255, 255, 0.475);
    text-decoration: none;
    margin-bottom: 1rem;
}

.introProjet{
    max-width: 90vw;
    margin-top: 8%;
    padding: 1rem;
    border: 1px solid #27272a;
    border-radius: 10px;
    width: 70vw;
    display: flex;
    flex-direction: column;
}

.introProjet p{
    margin-top: 1rem;
    font-family: monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.475);
}

.outils{
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.outils .cards{
    margin-right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.148);
    border-radius: 10px;
    padding: .7rem 1rem;
    font-size: 13px;
    background-color: inherit;
    color: white;
    fill: white;
    transition: 0.2s ease-in-out;
    display: flex;
    align-items: center;
}


.iconTools{
    fill: white;
    margin-right: 1rem;
    height: 20px;
    width: auto;
}

section{
    margin-top: 2rem;
    width: 70vw;
}

section p{
    margin-bottom: 1.5rem;
    text-align: justify;
}

.demo{
    display: flex;
    align-items: center;
}

.demo:hover a, .demo:hover .icon{
    color: white;
    stroke: white;
}


section a{
    color: rgba(255, 255, 255, 0.507);
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.icon{
    margin-right: .5rem;
    width: 20px;
    height: auto;
    stroke: rgba(255, 255, 255, 0.507);
    transition: 0.2s ease-in-out;
}


.images{
    width: 70vw;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.images img{
    width: 70%;
    height: auto;
    margin-bottom: 2rem;
}

@media screen and (max-width: 872px){
    .outils .cards{
        margin-bottom: 0.5rem;
    }
}



@media screen and (max-width: 768px){

    .introProjet, section{
        width: 100%;
        padding: 0 1.5rem;
    }

    .introProjet p{
        margin-bottom: 1rem;
    }

    .images{
        width: 100%;
    }

    .images img{
        width: 90%;
    }
}
