html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

ul{
    list-style: none!important;
    padding: 0;
}
ul{
    padding: 0!important;
}
h2{
    font-family: "Lucida Console", monospace, sans-serif;
}
.lead{
    font-size: 0.85rem!important;
}

li{
    text-align: left!important;
    margin-top: 0.50rem;
}

:root {
    --bs-primary: #4d426a;
    --bs-secondary: #3a2550;
}
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.text {
    display: block; /* Permet de mettre le texte sur une nouvelle ligne */
    text-align: left;
    font-size: 16px; /* Taille du texte */
    margin-bottom: 5px; /* Espacement entre le texte et le trait */

}

.underline {
    display: block;
    width: 60%!important; /* Largeur de 60% */
    height: 1px; /* Hauteur du trait */
    background: linear-gradient(to right, #67788c, #4d426a, #3a2550); /* Le dégradé */
    margin: 0 auto; /* Centrer horizontalement */
}
body {
    background-color: #fff;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.grecaptcha-badge {
    visibility: hidden !important;
}
footer {
    background: linear-gradient(to right, #67788c, #4d426a, #3a2550);
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}
footer img {
    max-height: 50px;
    margin-bottom: 0.5rem;
}
header{
    background: linear-gradient(to right, #67788c, #4d426a, #3a2550);

}

.tech-stack {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.tech-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 12px;
}
main {
    flex: 1 0 auto;
    margin-top: 2%;
}
.tech-item img {
    width: 40px;
    height: auto;
    margin-bottom: 5px;
}

.video-container {
    /*display: flex!important;*/
    justify-content: center;
    align-items: center;
}


@media (max-width: 600px) {
    h1,p, h2{
        text-align: center;
    }
    .tech-stack {
        flex-wrap: wrap;
    }

    .tech-item {
        flex: 0 0 50%;
    }


}

