@font-face {
  font-family: 'Circular';
  src: url("../fonts/Circular_new-Book.otf");
  font-display: swap;
}
@font-face {
  font-family: 'CircularBold';
  src: url("../fonts/Circular_new-Bold.otf");
  font-display: swap;
}
body {
  font-family: Circular;
  font-size: 16px;
}

a {
  color: black;
  transition: 0.4s ease;
}
a:hover {
  color: #D4071E;
  text-decoration: none;
}

.container-fluid {
  max-width: 99%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr));
  grid-auto-rows: 1fr;
}

.grid::before {
  content: '';
  width: 0;
  padding-bottom: 100%;
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

.grid > *:first-child {
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

/* Just to make the grid visible */
.grid > * {
  background: rgba(0, 0, 0, 0.1);
  border: 1px white solid;
}

.hero h1 {
  font-family: CircularBold;
  font-size: 3rem;
  line-height: 4rem;
  text-align: center;
  letter-spacing: 0.03em;
}
@media (max-width: 47.99em) {
  .hero h1 {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.project-wrapper {
  position: relative;
}
.project-wrapper img {
  object-fit: cover;
}
.project-wrapper:hover:after {
  opacity: 0;
}
.project-wrapper:after {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 1;
}
@media (max-width: 74.99em) {
  .project-wrapper:after {
    opacity: 0;
  }
}

.projekt img {
  min-height: 400px;
  min-width: 100%;
}
@media (max-width: 47.99em) {
  .projekt img {
    min-height: 100px;
  }
}

.site-header {
  background-color: white;
}
.site-header a {
  transition: ease-in-out color .15s;
}
.site-header a:hover {
  color: #D4071E;
  text-decoration: none;
}
@media (max-width: 47.99em) {
  .site-header img {
    height: 2rem;
  }
}

.kontakt p {
  font-size: 2rem;
}
.kontakt h1 {
  font-family: CircularBold;
}

footer {
  color: #999;
}
footer a {
  color: #999;
}
footer a:hover {
  color: #508829;
}

/*# sourceMappingURL=style.css.map */
