#titleInfos{
    text-align: center;
    color: rgb(0, 255, 0);
    font-size: 2.3rem;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    padding: 10px;
    margin: 50px 0 30px 0;
}
#infos{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}
.cardInfo{
    background-color: rgb(37, 36, 36);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px;
    border-radius: 7px;
    padding: 20px;
    height: 320px;
    box-shadow: 0 0 14px rgb(255, 255, 255);
    width: 27%;
    padding-bottom: 60px;
}
.imgInfo{
    height: 50px;
    width: 50px;
}
.subtitleInfo{
    margin-bottom: 20px;
    margin-top: 15px;
    color: white;
    font-size: 1.8rem;
}   
.textInfo{
    font-size: 1.05rem;
}

@media(max-width: 1200px){
    #infos{
        flex-direction: column; 
    }
    .cardInfo{
        width: 70%;
    }
    #titleInfos{
        font-size: 2rem;
    }
    .textInfo{
        font-size: 1rem;
        text-align: center;
    }
}


