.on-hover {
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out;
}

.border-on-hover:hover {
    opacity: 0.7;
    border-color: rgb(13, 110, 253) !important;
}

.image {
    max-width: 80vw;
    max-height: 412px;
    width: auto;
    height: auto;
}
.zoom {
    transition: transform .2s;
}

.zoom:hover {
    transform: scale(1.3);
}