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

a.logo{
border-radius: 50%;
overflow: hidden;
display: block;
width: 150px;
height: 150px;
border: 5px solid #282828;
top:15px;
left: 15px;
position: absolute;
}

a.logo img{
  width: 100%;
  height: auto;
}
.hero-title{
  font-size: xx-large;
  color: #282828;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 25px;
}
.hero-title h1{
  font-size: 60px;
  font-weight: 600;
}
a{
 color: #282828;
  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;
  }
}

