body{
    margin: 0%;
    padding: 0%;
    box-sizing:border-box;
    font-family: sans-serif;
}
.container{
    width:100%;
    height:200px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(to left, #11998e, #38ef7d);
}

.images{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.btn-div{
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
}


