html {
  height: 100%;
}
body {
  min-height: 100%;
}
main {
  margin: auto auto;
}
.kontakt {
  flex-direction: column;
  font-size: 2.5em;
  background-color: var(--white);
  padding: 0;
  justify-content: center;
  text-align: center;
}
.kontakt a {
  color: var(--black);
  padding: 0.25em;
}
.kontakt a:hover {
  color: var(--active);
}
[class^="icon-"],
[class*=" icon-"] {
  font-size: 36px;
  padding-right: 15px;
}
@media only screen and (min-width: 600px) {
  main {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1000px) {
  main {
    font-size: 28px;
  }
  [class^="icon-"],
  [class*=" icon-"] {
    font-size: 58px;
  }
}
@media only screen and (min-width: 2000px) {
  main {
    font-size: 40px;
  }
  [class^="icon-"],
  [class*=" icon-"] {
    font-size: 76px;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */
  .kontakt{
      background-color: white;
  }
  .kontakt a{
      color: black;
  }
  .kontakt a:hover {
    color: rgb(58, 58, 58);
  }
}