html,
body {
  margin: 0;
  padding: 0;
}

.container {
  width: 100vw;
}

.hero {
  width: calc(100vw - 120px);
  height: calc(100vh - 120px);
  background-image: radial-gradient(#008080, #006464, #16253b);
  margin: 60px auto 0 auto;
  position: relative;
}

.hero #logo {
  position: absolute;
  bottom: 75px;
  left: 75px;
  width: 175px;
}

#slogan {
  position: absolute;
  bottom: 75px;
  right: 75px;
  text-align: right;
}

.slogans h1 {
  font-family: "Lexend", sans-serif;
  color: white;
  font-size: 88px;
  line-height: 72px;
  margin: 0px;
}

#slogan2 h1 {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  text-shadow: 0px 0px 28px rgba(255, 255, 255, 0.5);
}

#contacts {
  width: 100%;
  text-align: center;
  font-family: "Lexend", sans-serif;
}

#contacts a {
  color: inherit;
  text-decoration: none;
}

#contacts p span {
  display: inline-block;
  margin: 0px 20px;
}


@media only screen and (max-width: 1200px) {
  .hero {
    width: calc(100vw - 60px);
    height: calc(100vh - 90px);
    margin: 30px auto 0 auto;
    position: relative;
  }

  .hero #logo {
    top: 50px;
    transform: translateX(-50%);
    left: 50%;
    width: 100px;
  }

  #slogan {
    right: 20px;
    bottom: 20px;
  }

  #slogan .slogans h1 {
    font-size: 42px;
    line-height: 42px;
  }
}
