*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    background-color: black;
    color: white;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.topbar {
    display:flex;
    justify-content: space-between;
    margin : 10px 10px 4px 10px;
    width: 100%;
}

a {
    color: black;
    text-decoration: none;
}

.container {
    display: flex;
    flex-wrap: wrap;
}

.item {
    color : lightblue;
    margin :8px;
    display: flex;
    justify-content: left;
    overflow: hidden;
}

.scalingImg {
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.fitImg {
    width: 100%;
}

.subDiv {
    display: flex;
    flex-direction: column;
    color: bisque;
    margin: 0;
    overflow: hidden;
}

.colBlock {
    background: rgb(173, 123, 47);
    margin :8px;
    display: flex;
    flex-grow: 1;
}

.buttonBar {
    position: absolute;
    align-self: flex-end;
    align-items: flex-end;
    display: flex;
    margin: 10px;
    width : 200px;
    height : 0px;
    transition: height 0.5s ease-out;
    z-index: 1;
}

.button {
    margin-right: 10px;
    width : 30px;
    height : 80%;
    opacity: 50%;
    transition: opacity 0.7s, height 0.7s;
}

.button:hover {
    opacity: 100%;
    height : 100%;
}

.buttonImg {
    height : 100%;
}

.overlay {
    background-color: rgba(0,0,0,0.8);
    width : 100%;
    height : 100vh;
    position: fixed;
    display: none;
    transition : display 1 ;
    align-items: center;
    justify-content: center;
    top : 0;
    left : 0;
}

.overlayImg {
    box-shadow : 0 0 40px 20px black;
    max-width: 95%;
    max-height: 95%;
    cursor: zoom-out;
}

.contactBox {
    background-color: aqua;
    box-shadow : 0 0 40px 20px black;
    width : 95%;
    height : 20rem;
    justify-items: center;
    /* max-width: 95%; */
    max-height: 95%;
    cursor: zoom-out;
}