@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");
          }

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;
  text-decoration: none;
  display: inline-block;
}


body {
  margin: 0;
}

.vl {
  border: 1px solid black;
  height: 25%;
  position: absolute;
  left: 50%;
  top: 0%;
}


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

#button-container { 
  background-color: white; 
  padding-left: 2em;
}
.header-container {
  height: 25%;
  width: 100%;
  display: flex;
}
.header-container > div {
  width: 50%;
}
.header-container > div > button {
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .header-container > div.peschpesch {
    width: 35%;
  }
  .header-container > div#button-container{
    width: 65%;
    padding: 0;
  }
  .header-container > div#button-container > button {
    margin: 4px 4px;
  }
}

* {
  box-sizing: border-box;
}


p {
  font-size: 2.2vw;
  font-family: 'suisse-regular';
  color: white;
}

.row {
  margin: 0px;
  background-color: black;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 0.1em;
  margin: 0%;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none; /* Hide all elements by default */
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  padding: 0.2em;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: 2px solid black;
  font-family: 'suisse-medium', Helvetica, sans-serif;
  font-size: 2.2vw;
  border-radius: 2em;
  padding: 12px 0;
  margin: 12px 0;
  margin-right: 2.5%;
  background-color: white;
  cursor: pointer;
}

.btn:hover {
  background-color: black;
  color: white;
}

.btn:hover a {
  color: white;
}

.btn.active {
  background-color:black;
  color: red;
}