* {
    margin: 0;
    padding: 0;
}

html{
    background: url('../img/back.png')  no-repeat center center fixed; 
    background-size: cover;
    font-family: 'Inconsolata', monospace;
}


.container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.left{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 6em;
}

.api{
    padding: 10px;
    font-size: 45px;
}

.imagin{
    font-size: 20px;
}

.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 200px;
    background-color: rgba(255, 255, 255,  .4) ;
    border-radius: 20px;
}
.card .text{
    color: rgb(70, 70, 70);
    font-size: 30px;
    padding: 0.5em;
}

.card .image .circle{
    height: 50px;
    width: 50px;
    background-color: #49df61;
    border-radius: 50%;
}

.right{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

}