body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #143142;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

.logo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px; /* Aumentar el tamaño del contorno de la casa */
}

.logo-top img.casa-img {
  width: 250px; /* Aumentar el tamaño de la casa */
  height: auto;
}

.logo-bottom {
  position: absolute;
  top: 110%;
  left: 35%;
  transform: translate(-50%, 200%);
  width: 180px; /* Tamaño de la flecha */
  opacity: 0;
  animation: slideUp 1.2s ease-out forwards;
}

.logo-bottom img.mano-img {
  width: 140%;
  height: auto;
}

.logo-text {
  margin-left: 40px;
  display: flex;
  align-items: center;
}

.logo-text img.letras-img {
  width: 350px;
  height: auto;
}

@keyframes slideUp {
  0% {
    transform: translate(-50%, 200%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

/* Media Query para dispositivos móviles */
@media (max-width: 768px) {
  .logo-icon {
    width: 100px;
  }

  .logo-top img.casa-img {
    width: 100px; /* Ajustar tamaño de la casa */
  }

  .logo-bottom {
    width: 90px;
    top: 105%;
    left: 50%;
    transform: translate(-50%, 300%);
  }

  .logo-bottom img.mano-img {
    width: 90px; /* Asegura que la flecha también esté escalada correctamente */
  }

  .logo-text {
    margin-left: 20px;
  }

  .logo-text img.letras-img {
    width: 150px;
  }
}
