*{
    /* margin:0;
    padding:0; */
    box-sizing: border-box;
    font-family: 'Play', sans-serif;
}
.catbody {
    overflow: hidden;
    color: #000;
    background-color: #dbedc7;
    font-family: 'Play', sans-serif;    
}
main{
    position: fixed;
    top:0;
    left: 0;
    width:100%;
    height: 100%;
    overflow: scroll;
}
.cmheader{
    width:100%;
    padding :0 2vw ;
    z-index: 10;
    color: #000;
    opacity: 1;
}
.cmheadpic {
float: left;
margin-right: 20px;
}
.catintro {
    width: 80%;
    margin-left: 16px;
    /* padding: 16px; */
}

.catcontainer{
    position: relative;
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 20px 2vw;
}
.column{
    flex:1;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.catpost{
    position: relative;
    overflow: hidden;
    width:100%;
}

.catpost img {
    width: 100%;
    border-radius: 5px;
    height: 100%;
}

.overlay{
    position: absolute;
    top:0;
    left: 0;
    width:100%;
    height:100%;
    background:#acf464;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity:0;
    transition:0.5s;
    border-radius: 5px;
    padding: 8px 8px;
}

.catpost:hover .overlay{
    opacity: 0.666;
    cursor: pointer;
}
#fullimageviewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    display: none;
    z-index: -23;
}
#fullimage {
    padding: 24px;
    max-width: 98%;
    max-height: 98%;
}
#mpagefoot {
    margin-left: 20px;
    margin-top: 20px;
    display: block;
}