.divs-b {
    display : flex ;
    flex-direction : column ;
    align-items : center ;
    gap : 15px ;
}


.divs {
    display : flex ;
    align-items : center ;
    gap : 15px ;
    justify-content : center ;
    flex-wrap : wrap ;
    background-color : rgba(220, 220, 220, 0.384) ;
    border-radius : 5% ;
    width : 90vw ;
    height : 100px ;
}

.divs h5 {
    font-size : 35px ;
    margin : 0 ;
    padding-left : 20px
}

.divs h6 {
    display : flex ;
    font-size : 15px ;
    margin : 0 ;
    padding-left : 100px
}


.head {
    display : flex ;
    flex-direction : column ;
    justify-content : center ;
    align-items : center ;
}

h3 {
    color : blue ;
    font-size : 50px ;
}

h1 {
    color : blue ;
    font-size : 70px ;
}

h5 {
    font-size : 20px ;
}

a {
    font-size : 20px ;
}


button {
    background-color : rgba(141, 141, 255, 0.377) ;
    border : none ;
    width : 80px ;
    height : 50px ;
    border-radius : 10px ;
}

.buttons {
    display : flex ;
    margin-left : auto ;
    padding-right : 30px ;
    gap : 20px ;
    cursor : pointer ;
}

button {
    cursor : pointer ;
    transition : all 0.2s ease ;
}

button:hover {
    background-color : rgba(141, 141, 255, 0.219) ;
    transform : scale( 1.2 ) ;
}

button:active {
    background-color : rgba(141, 141, 255, 0.486) ;
    transform : scale( 0.8 ) ;
}