* {
  margin: 0;
  padding: 0;
}
html {
  font-family: sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.container {
  /* background: linear-gradient(45deg, #ebebeb 0%, #ffffff 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 100%;
  min-height: 100vh;
}
.content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.image img {
  height: auto;
  width: 100%;
  max-width: 20em;
}
.image img {
  height: auto;
  width: 100%;
  max-width: 20em;
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  from {
    transform: translate(0, 0em);
  }
  65% {
    transform: translate(0, 1em);
  }
  to {
    transform: translate(0, -0em);
  }
}
.content img {
  height: auto;
  width: 100%;
  max-width: 12em;
}
h2 {
  margin-bottom: 0.5em;
}
p {
  color: #343434;
  font-size: 0.95em;
}
.text {
  max-width: 35em;
  margin: 2em 0em;
  text-align: center;
}
.cta {
  position: relative;
  margin: auto;
  padding: 0.75em 1.2em;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 3.12em;
  background-image: linear-gradient(90deg, #cc9c59, #efc788);
  width: 2.8em;
  height: 2.8em;
  transition: all 0.3s ease;
}

.cta span a {
  position: relative;
  font-size: 1.12em;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2b2b2b;
  text-decoration: none;
}
.cta svg {
  position: relative;
  top: 0;
  margin-left: 0.6em;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #2c2c2c;
  stroke-width: 2;
  transform: translateX(-0.312);
  transition: all 0.3s ease;
}
.cta:hover:before {
  width: 100%;
  background-image: linear-gradient(90deg, #cc9c59, #efc788);
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}
@media screen and (max-width: 44em) {
  .image {
    order: 1;
  }
  .container {
    flex-direction: column;
    padding-top: 4em;
  }
  h2 {
    font-size: 1.3em;
  }
  p {
    font-size: 0.9em;
  }
  .text {
    margin: 2em 1em;
  }
}
