body{
  margin: 0;
  background-color: #F4B027;
}
@media (orientation: landscape) {
  .hero{
    width: 100%;
    height: 100vh;
    background-color: #F4B027;
    background-size: contain;
    display: flex;
    align-items: center;
  }
  .hero img{
    width: auto;
    height: 100vh;
  }
}

.hero-title{
  font-size: xx-large;
  color: #b11c17;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 25px;
}
a{
 color: #b11c17;
  text-decoration: none;
  font-size: 60px;
  font-weight: 700;
}
.adress{
  text-decoration: none;
  font-size: 40px;
  font-weight: 700;
}
@media (orientation: portrait) {
  .hero{
    width: 100%;
    height: auto;
    background-color: #F4B027;
    background-size: contain;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .hero img{
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .hero-title{
    font-size: 22px;
    color: #b11c17;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 25px;
    max-width: 100%;
    margin-top: -100px;
    line-height: 1;
  }
  .hero-title span{
    font-size: 24px;
  }
  a{
   color: #b11c17;
    text-decoration: none;
    font-size: 30px;
    font-weight: 700;
  }
  .adress{
    text-decoration: none;
    font-size: 25px;
    font-weight: 700;
  }
}

