* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  background: linear-gradient(90deg, #9796f0 0%, #fbc7d4 100%);
  min-height: 100vh;
}

.container {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
}

.wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
}

.container-text {
  flex-basis: 50%;
  padding-left: 40px;
  overflow: hidden;
  color: #fff;
}

.tittle {
  font-size: 60px;
}

.subtitle {
  font-size: 30px;
  font-weight: 500;
  margin: 20px 0;
  color: #fff;
}

.image-container {
  flex-basis: 50%;
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.vic-img {
  animation: ilustration-animate ease-in 1s infinite alternate;
}

@keyframes ilustration-animate {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.04);
  }
}

.button:hover,
.button:focus {
  box-shadow: inset 0 0 0 2em #a972cb;
}
.button {
  background: none;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  padding: 1em 2em;
  color: #a972cb;
  transition: 0.25s;
}

.button:hover {
  border-color: #a972cb;
  color: #fff;
}
.button:focus {
  outline: none;
  border-color: #a972cb;
  color: #fff;
}

@media screen and (max-width: 800px) {
  .container {
    flex-direction: column-reverse;
  }
  .wave {
    width: 70%;
  }
  .container-text {
    display: flex;
    padding-left: 0;
    justify-content: center;
    align-items: center;
    flex-basis: 50%;
    flex-direction: column;
    text-align: center;
  }
  .tittle {
    font-size: 40px;
  }
  .subtitle {
    font-size: 20px;
  }
  .image-container {
    flex-basis: 60%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vic-img {
    height: 90%;
  }
}

@media screen and (max-width: 500px) {
  .wave {
    width: auto;
    height: 48%;
  }
  .container-text {
    flex-basis: 40%;
    justify-content: flex-start;
  }
  .tittle {
    font-size: 35px;
  }
}
