.zoomOutLicenseBox{
    position: relative;
}
.zoomOutLicenseBox:hover .zoomOutLicenseLayer{
    opacity: 1;
}
.zoomOutLicenseLayer{
    opacity: 0;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ZoomButton{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    background-color: cornflowerblue;
}
.ZoomInLicenceImage{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    transition: all ease 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
