.containerSplash {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 21px;
}

.logo-top-center {
  width: 175px;       
  height: auto;     
}

.center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -40px;
}


.logo-center {
  width: 700px;
  margin-top: -170px;
}


.headline-text {
  font-size: 32px;
  color: #333;
  margin-top: -135px;
}


.dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin-top: 15px;
}


.dot {
  height: 40px;
  width: 40px;
  margin-right: 2ch;
  border-radius: 3cqh;
  background-color: #bc937c;
  animation: pulse 2s infinite ease-in-out;
}

.no-animation {
  animation: none !important;
}

.dot:last-child {
  margin-right: 0;
}

.dot:nth-child(1) {
  animation-delay: -0.3s;
}

.dot:nth-child(2) {
  animation-delay: -0.1s;
}

.dot:nth-child(3) {
  animation-delay: 0.1s;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    background-color: #a67057;
    box-shadow: 0 0 0 0 rgba(191, 154, 132, 0.7);
  }

  50% {
    transform: scale(1.2);
    background-color: #a66b50;
    box-shadow: 0 0 0 10px rgba(191, 154, 132, 0);
  }

  100% {
    transform: scale(0.8);
    background-color: #ae6e50;
    box-shadow: 0 0 0 0 rgba(191, 154, 132, 0.7);
  }
}

.enter-button {
  margin-top: 36px;
  padding: 10px 25px;
  font-size: 24px;
  background: #2D2D2D;
  color: #F5F3ED;
  border: none;
  border-radius: 30px;
  cursor: pointer;  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  font-family: 'Poppins';
  visibility: hidden;
}


.enter-button:hover {
  background: #2D2D2D;     
  transform: scale(1.1); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
}

.logo-bottom-center {
  width: 150px;       
  height: auto; 
  margin-top: 70px;
}

