* {
  margin: 0;
  padding: 0;
  font-family: FK Grotesk Neue, sans-serif;
  overflow-y: hidden;
}

body {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #4949b7;
}
body .image-container {
  display: flex;
  position: absolute;
  right: 50px;
  z-index: -1;
}
body .text-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 700px;
  min-width: 300px;
  color: #c5c5eb;
  background-image: linear-gradient(to left, rgba(73, 73, 183, 0), #4949B7);
}
body .text-container h1 {
  font-size: 60px;
  font-weight: 800;
  color: #FEB089;
}
body p {
  font-size: 20px;
  line-height: 25px;
}
body a {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  padding: 20px;
  width: 85px;
  border-radius: 30px;
  margin-top: 15px;
  background-color: #FEB089;
  position: relative;
  transition: 200ms ease-in-out;
}
body a:hover {
  width: 95px;
}
body a:hover svg {
  right: 20px;
}
body a span {
  margin-top: 1px;
  font-size: 16px;
  font-weight: 600;
  margin-left: 5px;
  color: #161348;
}
body a svg {
  position: absolute;
  right: 30px;
  width: 18px;
  transition: 200ms ease-in-out;
}
body a svg path {
  fill: #161348;
}

@media (max-width: 1200px) {
  .image-container {
    width: 100vw;
    height: 100vh;
    right: 0px !important;
    justify-content: center;
    align-items: center;
  }
}

/*# sourceMappingURL=style.css.map */
