@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,500&family=Young+Serif&display=swap");

body {
  margin: 0 2em;
  background-color: #202227;
  -webkit-text-size-adjust: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #ffffff;
}
body:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url("../img/bg.svg");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
.container {
  max-width: 1140px;
  width: 100%;
  margin: 60px auto;
}
.header a {
  position: relative;
  display: inline-block;
}
.header a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.header img {
  max-width: 200px;
}

.content {
  position: relative;
  display: flex;
  margin-top: 6em;
  flex-wrap: wrap;
}
.slogan {
  width: 100%;
  margin-bottom: 4em;
  display: flex;
  flex-flow: column;
  flex-direction: row;
  justify-content: space-between;
}
.slogan h1 {
  float: left;
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 54px;
  order: 1;
}
.slogan img {
  float: right;
  max-width: 480px;
  order: 2;
  -webkit-animation: slide-top 2s ease-in-out infinite alternate-reverse both;
  animation: slide-top 2s ease-in-out infinite alternate-reverse both;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.email span {
  display: inline-block;
  border: 1px solid #55565c;
  border-radius: 100px;
  padding: 10px 20px;
  color: #e2e4e7;
  line-height: 1em;
  vertical-align: middle;
  letter-spacing: 0.06em;
  background-color: rgb(32 34 39 / 82%);
}
.email img {
  padding-right: 5px;
  vertical-align: middle;
}

@media (max-width: 1040px) {
  .container {
    text-align: center;
    margin: 40px auto;
  }
  .content {
    margin-top: 3em;
  }
  .slogan {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2em;
  }
  .slogan h1 {
    order: 2;
    font-size: 48px;
  }
  .slogan img {
    order: 1;
    max-width: 320px;
  }
  .email {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 840px) {
    .slogan h1 {
      font-size: 32px;
    }
  }
@media (max-width: 480px) {
  .content {
    margin-top: 2em;
  }
  .slogan img {
    max-width: 280px;
  }
}
