/* dosis-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Dosis';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/dosis-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dosis-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Dosis';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/dosis-v32-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dosis-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Dosis';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/dosis-v32-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:'Dosis';
  background: #ef0202;
  background: linear-gradient(215deg, rgba(175,3,3,1) 0%, rgba(57,5,5,1) 81%, rgba(0,0,0,1) 100%);
}

.baustelle {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.baustelle .container {
  width: 500px;
  max-width: 100%;
}

.baustelle .container img {
  width: 100%;
  object-fit:contain;
  filter: drop-shadow(3px 13px 6px rgb(0 0 0 / 0.4))
}

.baustelle .container .moreInfo {
  width: 100%;
  margin-top: 50px;
  font-size: 3rem; 
  line-height: 3.5rem;
  text-align: center;
  color: #fff;
  opacity: 80%;
}

.baustelle .container .socials {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.baustelle .container .socials img {
  height: 100%;
  filter: none;
}

@media(max-width:767px){
  .baustelle .container .moreInfo {
    font-size: 2rem;
  }
}