.home-container {
  width: 100%;
  display: flex;
  overflow: auto;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.home-text {
  font-size: 15px;
}
@media(max-width: 767px) {
  .home-text {
    font-size: 10px;
  }
}
@media(max-width: 479px) {
  .home-text {
    font-size: 5px;
  }
}
