.main-container {
  /* overflow: hidden; */
}
.overflower {
  overflow: visible !important;
}
.text-container {
  top: 0;
  left: 0;
  padding-left: 55px;
  scale: 0;
  text-align: left;
  padding: 15px;
  background-color: rgba(30, 61, 40, 0.7);
  opacity: 0;
  transition-duration: 1s;
  font-weight: bold;
}

.contained-image {
  border-radius: 5px;
  border-color: #70964c;
  border-style: solid;
  border-width: 10px;
}

.text-container p {
  color: white;
}
.text-container h1 {
  color: white;
  font-weight: bold;
}

.world-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-image {
  top: 5 px;
  position: absolute;
  width: 100%;
  z-index: 1;
  transition: all 2s;
}

.world-container .world-image {
  transition: all 1s;
}

.world-container .left {
  transform: translateX(-51%) translateY(-45%) scale(0.3);
  transition: all 1s;
}
.world-container .right {
  transform: translateX(51%) translateY(45%) scale(0.3);
  transition: all 1s;
}

.world-container .text-container {
  scale: 1;
  transition-duration: 1s;
  opacity: 1;
}

@keyframes moveLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
