
body {
  background-size: 100% auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  height: 100vh;
  background-image: url('../images/memorywave-desktop.png');
}

@media (max-width: 768px) {
  body {
    background-image: url('../images/memorywave-mobile.png');
    background-size: 100% auto;
    background-position: 0 0;
    background-repeat: no-repeat;
    height: 100vh;
  }
}

/* Centralizar o modal */
.modal {
  text-align: center;
}

/* Alinhar vertical e horizontalmente */
.align-middle {
  align-items: center;
  justify-content: center;
}

/* Cor da borda do modal */
.modal-content {
  border: 4px solid #5BA697;
  box-shadow: 0 0 0 4px #5BA697;
}

.texto-cor1 {
  font-weight: bold;
  color: #5BA697;
  font-size: 30px;
  line-height: 34px;
  white-space: nowrap;
  /*font-size: 1.17em; /* Tamanho equivalente ao h3 (aproximadamente) */
}

.texto-cor2 {
  font-weight: bold;
  color: red;
  font-size: 24px;
  line-height: 26px;
  /*font-size: 1.17em; /* Tamanho equivalente ao h3 (aproximadamente) */
}

.texto-cor3-1 {
  font-weight: bold;
  color: white;
  font-size: 30px;
  line-height: 35px;
  /*font-size: 1.17em; /* Tamanho equivalente ao h3 (aproximadamente) */
}

.texto-cor3-2 {
  font-weight: bold;
  color: white;
  font-size: 30px;
  line-height: 35px;
  /*font-size: 1.17em; /* Tamanho equivalente ao h3 (aproximadamente) */
}

.texto-cor4 {
  font-weight: bold;
  color: black;
  font-size: 12px;
  line-height: 14px;
  /*font-size: 1.17em; /* Tamanho equivalente ao h3 (aproximadamente) */
}

.hiddenFooter {
  display: none;
}

@keyframes pulse2 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.pulsating-image {
  -webkit-animation: pulse2 2s infinite;
  -moz-animation: pulse2 2s infinite;
  -ms-animation: pulse2 2s infinite;
  -o-animation: pulse2 2s infinite;
  animation: pulse2 2s infinite;
}