@font-face {
        font-family:suisse-regular;
        src:url(../fonts/suisse-regular.otf) format("opentype");
    }

@font-face {
            font-family:suisse-medium;
            src:url(../fonts/suisse-medium.otf) format("opentype");
                }

html, body { 
  height: 100%; 
  padding: 0; 
  margin: 0; 
}

.vl {
  border: 1px solid black;
  height: 100vh;
  left: 50%;
  position: fixed;
  top: 0%;
  margin: 0;
}

.hl {
  border: 1px solid black;
  width: 50%;
  top: 25%;
  position: absolute;
  margin: 0;
}

hr {
  border: 1px solid black;
}

/* Main flexbox container */
div.container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
div.peschpesch {
  height: 25%;
  width: 50%;
}
div.about {
  height: 75%;
  width: 50%;
  position: relative;
}
div.introduction {
  height: 100%;
  width: 50%;
  overflow-y: scroll;
}
/* Styles for the flex-items */
/* div.container > div {
  width: 50%;
  height: 50%;
} */

/* Media query for responsiveness */
@media only screen and (max-width: 768px) {
  div.container {
    flex-direction: row;
  }
  div.container > div {
    height: auto !important;
    width: 100% !important;
    padding-bottom: 0.2em;
  }
  div.peschpesch {
    order: 1;
  }
  div.introduction {
    order: 2;
    max-height: 60%;
    
  }
  div.about {
    order: 3;
  }
  p {
    font-size: 4.4vw !important;
  }
  a.textlink {
    font-size: 4.4vw !important;
  }
  a.link {
    font-size: 4.4vw !important;
  }
  a.presslink {
    font-size: 4.4vw !important;
  }
  .hl {
    display: none;
  }
  .vl {
    display: none;
  }

}

a.link {
  font-family: 'suisse-regular', Helvetica, sans-serif;
  color: black;
  font-size: 2.2vw;
  line-height: 1.08;
  padding: 0px 0px 0px 0px;
}

a.link:hover {
  text-decoration: underline;
  cursor: pointer;
}

a {
  font-family: 'suisse-medium', Helvetica, sans-serif;
  color: black;
  font-size: 6.4vw;
  line-height: 0.9;
  padding-left: 0.2em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  text-decoration: none;
  display: inline-block;
}

p {
  font-family: 'suisse-regular', Helvetica, sans-serif;
  color: black;
  font-size: 2.2vw;
  line-height: 1.08;
  padding-left: 0.6em;
  padding-right: 0.6em;
  text-decoration: none;
  display: inline-block;
}

a.textlink {
  font-family: 'suisse-regular', Helvetica, sans-serif;
  color: black;
  font-size: 2.2vw;
  line-height: 1.08;
  padding: 0px 0px 0px 0px;
}

a.textlink:hover {
  text-decoration: underline;
  cursor: alias;
}

a.weblink {
  font-family: 'suisse-regular', Helvetica, sans-serif;
  color: black;
  font-size: 2.2vw;
  line-height: 1.08;
  padding-left: 0.6em;
  padding-right: 0.6em;
}

a.weblink:hover {
  text-decoration: underline;
  cursor: alias;
}


.peschpesch { background-color: white; }
.peschpesch:hover { background-color: black; cursor: pointer; }
.peschpesch:hover a { color:white; }

.about { background-color: white; }
.about:hover { background-color: black; }
.about:hover a { color:white; }

.links { 
  clear: both; 
  float: left;  
  padding-left: 0.6vw; 
  padding-bottom: 0.6em;
}
.links> a:hover {color:red;}

.cv-link { 
  font-size: 4.4vw; 
  padding-top: 0.6em; 
}
.cv-link:hover { text-decoration: underline; color: red; }


.email-link { 
  font-size: 4.4vw; 
  padding-top: 0;
}
.email-link:hover { text-decoration: underline; color: red; }


img{
  width: 100%;
  height: 100%;
}

.project-image-cover{
  object-fit: cover;
}
