@import url('https://fonts.googleapis.com/css?family=Overpass:400,700,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Colors */
body {
  background: #F8F7F7;
  color: #202020;
  font-family: 'Overpass', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.62;
}
/* Typo */
h1 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}
p {
  margin-bottom: 1rem;
}
a {
  color: #202020;
}
.wrapper .top {
  height: 40vh;
  display: flex;
}
.wrapper .logo {
  width: 12rem;
  margin: auto;
}
.wrapper .logo .st0 {
  fill: #F8F7F7;
}
.wrapper .content {
  width: 100%;
  max-width: 1160px;
  padding: 1rem;
  margin: 0 auto;
  margin-top: 4rem;
}
.wrapper .map,
.wrapper .instagram {
  margin-top: 4rem;
}
.wrapper .map iframe,
.wrapper .instagram iframe {
  margin-top: 2rem;
}
.animation {
  background: url('img/fritzhabib-hero-background.png') no-repeat center center;
  background-size: cover;
  position: relative;
}
.animation:after,
.animation:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  z-index: -1;
}
.animation:after {
  background: radial-gradient(circle, red, transparent);
  background-size: 400%;
  animation: colorSpin 30s linear infinite;
}
.animation:before {
  background-color: yellow;
}
@keyframes colorSpin {
  25% {
    background-position: 0 100%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 100% 0;
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background: #202020;
    color: #888888;
  }
  a {
    color: #888888;
  }
  .map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
  }
}
