section{
    margin: 2rem auto;
}
.hover-overlay{
    position: relative;
}
.hover-overlay .mask {
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.hover-overlay .mask:hover {
    opacity: 1;
}
.mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
}
.wc-cover .mask{
    color: white;
    text-align: center;
    display: grid;
    align-items: center;
    font-weight: bold;
}
.wc-cover .mask span {
    border: 2px solid;
    display: block;
    margin: auto;
    padding: 7px 15px;
    min-width: 80px;
    background: rgba(0, 0, 0, 0.35);
}
@media (min-width: 576px) {
    brand span:first-child{
        color: var(--logo-default);
    }
    #navmenu{
        position: absolute;
        width: 100%;
        z-index: 10;
        /*box-shadow: 0 10px 20px 0 rgba(0,0,0,.05);*/
    }
}
@media (max-width:768px) {
    .wc-cover{
        max-width: 200px;
        max-height: 200px;
        overflow: hidden;
    }
}