.container {
  height: auto;
  width: auto;
}

.title-1 {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.title-2 {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.image-container {
  display: flex;
  justify-content: center;
  padding-top: 25px;
}
.image-css {
  width: 60%;
  height: auto;
}
@media screen and (max-width: 480px) {
  image-css {
      width: 60%;
  }
}

.animated {
  opacity: 1;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomIn {
  0% {
      opacity: 0;
      transform: scale3d(.3,.3,.3);
  }
  50% {
      opacity: 1;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRight {
  0% {
      opacity: 0;
      transform: translate3d(100%,0,0)
  }
  100% {
      opacity: 1;
      transform: translate3d(0,0,0);
  }
}

.myntra-logo {
  height: 50px;
  width: 80px;
}
