/* poppins-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: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-v20-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  box-sizing: border-box;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins";
  background-color: #17213a;
  font-weight: normal;
  color: #FFFFFF;
  line-height: 2;
  width: 100vw;
  height: 100vh;
  scroll-behavior: smooth;
}

.main {
  background-image: url("img/haus.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-position-y: bottom;
  background-size: auto;
  width: 100vw;
  height: calc(90vh - 20rem);
  color: white;
  padding: 2rem 22vw;
  display: flex;
  flex-direction: column;
}
.main img {
  display: flex;
  height: 4rem;
}
.main .info-block {
  display: flex;
  flex-direction: column;
  height: 70vh;
  justify-content: flex-end;
  padding: 2rem 0rem;
}
.main .info-block p {
  font-size: 0.8rem;
  padding-top: 1rem;
  padding-left: 3rem;
  
}
.main .info-block p a {
  color: #FFFFFF;
  font-size: 0.8rem;
}

@media only screen and (max-width: 1200px) {
  .main {
    padding: 2rem 14vw;

  }
}
@media only screen and (max-width: 800px) {
  .main {
    background-image: url("img/mobilehaus.svg");
    background-size: 60vw;
  
  }
  .info-block{
    display: flex;
    flex-direction: column;
    height: 60vh;
    justify-content: flex-end;
    padding: 2rem 2rem;
}
}
main .info-block p {
  font-size: 0.7rem;
  padding-top: 1rem;
  
  

}
footer {
  background-color: #FFFFFF;
  color: #17213a;
  text-align: right;
  padding: 0rem 4.5vw;
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  height: 20rem;
  align-items: center;
}
footer a {
  color: #17213a;
  text-decoration: underline;
}
footer a:hover {
  color: #ccc;
}/*# sourceMappingURL=style.css.map */