html,* { font-family: 'Inter'; box-sizing: border-box; }
body { background-color: #fafaf7; line-height:1.6;}
.lead { font-size: 1.5rem; font-weight: 300;background: linear-gradient(to right, #000000 0%, #000000 50%,#999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color:transparent; }
.container { margin: 20px auto; max-width: 960px; }
h1 {
  background: linear-gradient( 120deg, #bd34fe 30%, #41d1ff );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#con{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;

}

.card{
    border-radius: 10px;
    padding: 50px;
    width: 24%;
    box-sizing: border-box;
    background-color: black;
    color: aliceblue;
    text-align: center;
}

.number-animate {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.number-animate::before{
    content: "+";
}

@media screen and (max-width: 1100px) {
    #con{
        row-gap: 15px;
        padding: 10px;
    }

    .card{
        width: 49%;
    }
}


  
