.root {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #6eff96;
  height: 100%;
  width: 100%;
}

.wrapper {
  height: 100%;
  max-height: 100vh;
  max-width: 1700px;
  overflow: hidden;
  width: 100%;
  padding: 20px 20px 100px;
  display: flex;
  flex-direction: column;
}

.left {
  flex: 1;
  max-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  width: 80%;
  margin: 40px 0 20px;
  color: #1e371f;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.image {
  width: 100%;
  max-width: 950px;
  max-height: 80vh;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 70px;
  border-radius: 10px;
  border: 2px solid #87ffa8;
  background: #2e432d;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.55);

  color: #6eff96;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  animation: pulse 1s infinite;

  cursor: pointer;
  outline: none;
}

@media (min-width: 400px) {
  .image {
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
}

@media (min-width: 580px) {
  .wrapper {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .left {
    display: flex;
    align-items: center;
    max-height: 100%;
  }

  .image {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .title {
    font-size: 30px;
  }
}

a:active,
a:focus {
  outline: none;
}

@keyframes pulse {
  0% {
    scale: 0.9;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 0.9;
  }
}
