html,body {
  margin: 0;
  padding: 0;
  width:100%;
  height: 100%;
    cursor: url(/assets/cursor.svg), auto;
    -webkit-font-smoothing: antialiased;
}

body {
    display: inline;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 19px;
    color: #000;
    justify-content:center;
    background-color: #F8F1E4;
    margin:0px;
}


/* unvisited link */
a:link {
    color: #000;
    text-decoration: none;
    cursor: url(/assets/cursor.svg), auto;
}

/* visited link */
a:visited {
    color: #000;
    text-decoration: none;
    cursor: url(/assets/cursor.svg), auto;
}

/* mouse over link */
a:hover {
    text-decoration: none;
    color:transparent;text-shadow:0px 0px 6px #000;
    cursor: url(/assets/cursor.svg), auto;

}







@media (max-width: 700px) {
  #wrapper {
    flex-direction: column;
    width: 100vw !important;
  }
    #column-one,
    #column-two,
    #column-three,
    #column-four {
    width: 90% !important;
    border-right: 0px solid #000 !important;
    border-top: 1px solid #000 !important;
    padding:5% !important;
  }
}








#wrapper {
    display: flex;
    height:100vh;
}


#column-one {
    float: left;
    width: 25%;
    border-right: 1px solid #000;
    padding: 15px;
        position: relative;

}

#column-two {
    float: left;
    width: 25%;
    border-right: 1px solid #000;
    padding: 15px;
        position: relative;

}

#column-three {
    float: left;
    width: 25%;
    border-right: 1px solid #000;
    padding: 15px;
        position: relative;

}

#column-four {
    float: left;
    width: 25%;
    border-right: 0px solid #000;
    padding: 15px;
        position: relative;

}





.hover-title {
    display: inline;
    pointer-events: auto;
    cursor: url(/assets/cursor.svg), pointer;
}

.hover-image {
    display: none;
}

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

.hover-image {
    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;
    z-index: 99999;

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

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

iframe {
    border: 1px solid #000;
    background-color: #ccc;
    box-shadow: 0 0 15px 2px #ccc;

}

