.h1, h1 {
    margin-top: revert;
    margin-bottom: revert;
}

.h3, h3 {
    margin-top: revert;
    margin-bottom: revert;
}

.mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
}

.hover-overlay .mask {
    opacity: 0;
    background-color: hsla(0, 0%, 97%, 0.3);
    transition: all 0.3s ease-in-out;
}

.hover-overlay .mask:hover {
    opacity: 1;
}
