#title {
    background: linear-gradient(to right, orange , yellow, green, cyan, blue, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 5%;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    padding-bottom: 80px;
}

.footer {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
    display: block;
}

/*
 * Images and zoom
 */

.image {
    position: relative;
    width: 45%;
}

.image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#div_base {
    margin-right: 10%;
}

#image_base, #div_crop {
    position: absolute;
    /* fit inside parent (resize + aspect ratio) */
    max-width: 100%;
    max-height: 100%;
    /* center */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#images {
    display: flex;
    min-height: 100px;
}

#div_crop {
    overflow: hidden;
}

#selection {
    position: absolute;
    top: 0;
    height: 0;
    left: 0;
    border-style: solid;
    border-width: 1px;
    border-color: red;
    pointer-events: none;
}

#image_base:hover {
    cursor: crosshair;
}

#ita_loader > img {
    position: absolute;
    height: 50px;
    width: 50px;
    margin-top: -40px;
    cursor: pointer;
    transition: all 3s;
}

.rotate {
    transform: rotate(1080deg);
}
