/* Styling images */
div.images{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 20px;
    margin-right: 0;
    margin-bottom: 100px;
}

div.images div img{
    display: block;
    width: 250px;
    height: auto;
    margin-top: 20px;
    margin-right: 20px;
    border: 1px solid #03a9f4;
    cursor: pointer;
}

/* Animation */
:root {
    --animate-duration: 1200ms;
    --animate-delay: 0.9s;
}

/* Styling images end here */