@import "fonts.css";

html,
body {
  background-color: #ecceb8;
  color: black;
  font-family: "DINPro Condensed", sans-serif;
  margin: 0;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero img {
  position: absolute;
  top: 35px;
  right: 35px;
  max-width: 100%;
  width: 100px;
  height: auto;
}

.hero h1 {
  position: absolute;
  margin: 0;
  width: 100%;
  bottom: 35px;
  font-size: 10vw;
  font-weight: 900;
  color: rgba(236, 206, 184, 0.8);
  text-align: center;
  text-transform: uppercase;
}

.info {
  position: relative;
  margin: 140px 0;
  text-align: center;
}

.info img {
  max-width: 100%;
  width: 250px;
  height: auto;
  margin-bottom: 70px;
}

.info .info-item {
  margin-bottom: 20px;
}

.info .info-item p {
  margin: 0;
}

.info .info-item a {
  color: black;
  text-decoration: underline;
}

.info .under-construction {
  position: absolute;
  margin: 0;
  bottom: -20px;
  left: 15px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
  transform: rotate(-90deg);
  transform-origin: top left;
}

@media (min-width: 600px) {
  .hero img {
    width: 200px;
  }

  .info img {
    width: 400px;
  }

  .info .under-construction {
    bottom: -35px;
    left: 35px;
  }
}
