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

.home__container__title{
  text-align: center;
  font-size: 2.3rem;
  font-weight: 600;
  color: #394758;
}

.home__container__text{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: #394758;
  margin-top: 10px;
}

.home__container__image{
  width: 270px;
  height: auto;
  margin-top: 50px;
}

@media (max-width: 768px) {

  .home__container{
    margin-top: 220px;
  }

  .home__container__title{
    font-size: 1.8rem;
  }

  .home__container__text{
    font-size: 1rem;
  }

  .home__container__image{
    width: 200px;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {

  .home__container {
    height: 100vh;
  }

  .home__container__title {
    font-size: 2rem;
  }

  .home__container__text {
    font-size: 1.2rem;
  }

  .home__container__image {
    width: 250px;
  }

}