.bem-vindo {
  position: relative;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #8A1344;
  background: radial-gradient(#FCFCF8, #fcd9d6);
}

.fadeIn {
  animation: fadeIn 1.5s ease-in-out;
}

.bem-vindo .content {
  z-index: 100;

  width: 530px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.bem-vindo .content header {
  margin-bottom: 65px;

  text-align: center;
}

.bem-vindo .content p {
  font-size: 20px;
  line-height: 25px;
  text-align: justify;
  margin-bottom: 30px;
}

.bem-vindo .content span {
  font-size: 20px;
}

.bem-vindo .content footer {
  width: 100%;
  margin-top: 40px;

  font-size: 20px;
  text-align: start;
}

.background svg {
  width: auto;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 550px) {
  .bem-vindo .content {
    width: 100%;
    transform: scale(0.9);
  }
}

@media screen and (max-width: 500px) {
  .bem-vindo .content {
    transform: scale(0.8);
  }
}

@media screen and (max-width: 330px) {
  .bem-vindo {
    height: auto;
  }
}

@media screen and (max-height: 530px) {
  .bem-vindo {
    padding: 30px 0 50px;
  }
}
