:root {
    --Background-Color: #6162C3;
    --Basic-Text-Color: #000;
    --Secondary-Text-Color: #6162C3;
    --Polygon-Text-Color: #8247E5;
    --Paragraph-Text-Color: #3A3A3A;
    --Background_Body: #fff;
    --Paragraphe_Roedmap: #2e2e2e;
}


#Roadmap h1{
    text-align: center;
    color: var(--Secondary-Text-Color);
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    text-decoration: underline;
}

#Roadmap{
    margin-top: 50px;
    margin-bottom: 40px;
    padding-inline: 20px;
}

.Phase{
    display: flex;
    align-items: center;
    justify-content: center;
}

#Roadmap div:last-child p{
    color: var(--Paragraphe_Roedmap);
    font-weight: 500;
    margin-left: 10px;
    font-size: 1.1rem;
    max-width: 600px;
}

#Roadmap div:last-child h2{
    color: var(--Basic-Text-Color);
    margin-left: 10px;
    font-size: 1.7rem;
    text-transform: uppercase;
    position: relative;
}

.Phases{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    gap: 20px;
    margin-top: 40px;
}

@media only screen and (max-width: 1100px) {
    #Roadmap h1{
        font-size: 2.6rem;
    }

    #Roadmap{
        margin-top: 20px;
    }

    .Phases{
        margin-top: 10px;
    }
}


@media only screen and (max-width: 700px) {
    #Roadmap div:last-child p{
        font-size: 0.9rem;
    }
    #Roadmap div:last-child h2{
        font-size: 1.5rem;
    }

}