body {
  /* justify-content: center;
  align-items: center; */
  /* margin: 0 auto; */
  background-color: #000000;
  background-image: url("./sunny-unsplash.jpg");
  background-repeat: no-repeat;
  background-size: 210vh;

  color: #3a334e;
  /* animation: rotate 5s infinite alternate linear; */
}

.title {
  font-size: 3rem;
}

h1,
h3 {
  display: flex;
  justify-content: center;
  font-family: "Indie Flower", Arial, Helvetica, sans-serif;
}
h3 {
  position: relative;
  bottom: 25px;
}

h4 {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-get {
  width: 9em;
  height: 3em;
  border-radius: 30em;
  font-size: 15px;
  font-family: inherit;
  border: none;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 1rem;
  z-index: 1;
  box-shadow: 6px 6px 12px #c5c5c5, -3px -3px 9px #ffffff;
}

.btn-get::before {
  content: "";
  width: 0;
  height: 3em;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #0fd850 0%, #f9f047 100%);
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

.btn-get:hover::before {
  width: 9em;
}

.showcase {
  width: 30em;
  border-radius: 15px;

  margin: 0 auto;
  display: flex;
  aspect-ratio: 3/2;
  object-fit: contain;
}

/* mobile */

@media (min-width: 360px) and (max-width: 830px) {
  h3 {
    margin: 0 auto;
  }
  .title {
    margin-right: 5rem;
    font-size: 2rem;
  }
  .showcase {
    max-width: 380px;
    height: 300px;
    object-position: -0.2cm;
  }
}

@media (min-width: 370px) and (max-width: 1200px) and (orientation: landscape) {
  .title {
    font-size: 3rem;
    margin-right: 14rem;
  }
  h3 {
    margin-right: 12rem;
  }
}
