.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: merriweather sans;
  margin-bottom: 150px;
  opacity: 0;
  transform: translateX(-80px);
  animation: fadeLeft 0.5s ease-in forwards;
  animation-delay: 0.2s;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.container-img {
  width: 300px;
  height: 400px;
  position: relative;
}

.inside-container {
  width: 280px;
  height: 280px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px 15px 50px 15px;
  position: relative;
  margin: 150px 0 0 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease-out forwards;
  animation-delay: 0.6s;
  padding-bottom: 320px;
  border-radius: 3px;
  border: 1px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.title {
  font-size: 20px!important;
  margin-bottom: 20px!important;
  font-weight: bold!important;
  text-align: center!important;
}

.excerpt {
  font-size: 15px!important;
  margin-bottom: 10px!important;
  text-align: justify!important;
}

.inside-container input[type="button"] {
  position: absolute;
  bottom: 5px;
  left: 15px;
  padding: 10px 15px;
  background: none;
  color: #000000;
  border: none;
  cursor: pointer;
  font-weight: 600;
}