    @font-face {
    font-family: "MyWebFont"; "Helvetica Neue" ;
    src: url('Korpus-Grotesk-C-webfont.woff2') format('woff2'),
        url('Korpus-Grotesk-C-webfont.woff') format('woff');

}

body {
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    margin-left: 20px;
    margin-top: 20px;
    max-width: 800px;
    font-family: "MyWebFont"; "Helvetica Neue" ; "helvetica";
    color: black;
    font-size: 20px;
    line-height: 20px; 
}

.container {
    position: relative;
    width: 510px;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.container:hover .overlay {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #fff;
}

.image {
    padding: 0px;
}

.text {
    margin-top: 0px;
    padding: 0px;
    font-family: "MyWebFont"; "Helvetica Neue" ; "helvetica";
    color: black;
    font-size: 20px;
    line-height:normal;
    position: absolute;
    text-align: left;
    letter-spacing: 1px;
}

h1 {
    font-family: "MyWebFont"; "Helvetica Neue" ; "helvetica";
    color: black;
    font-size: 20px;
    line-height: 20px; 
}


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

a:hover {
    color: #c8c8c8;
}

.hover-title {
    display: inline;
    pointer-events: auto;
    cursor: pointer;
}

.hover-image {
    visibility: hidden;
}

body:not(.mobile) .hover-title:hover + .hover-image {
    visibility: visible;
    pointer-events: none;
}

.hover-image {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

/* Change width and height to scale images */
    width: 90vw;
    height: 90vh;
}

a:link 
{ 
 text-decoration:underline; 
} 

.hover-title {
    text-decoration: underline;
}

.hover-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    margin-bottom: 0;
}