html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Frankfurter', sans-serif !important;
  color: white;
  font-size: 9px;
}

#magic {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: block;
  top: 0;
  left: 0;
  z-index: -9999;
}

.playground {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  top: 0;
  left: 0;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottomPosition {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: env(safe-area-inset-bottom);
}

/* En pantallas móviles, subimos el botón */
@media (max-width: 480px) {
  .bottomPosition {
    margin-bottom: 18vh; /* Un % del alto total de pantalla */
  }
}

a {
  color: white;
  font-size: 12px;
  text-decoration: none;
}

.logo {
  width: 50px;
  height: 50px;
}

/* @font-face {
  font-family: 'Frankfurter';
  src: url('./Frankfurter/Frankfurter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */


#welcome-button, #welcomebtn {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-family: 'Frankfurter', sans-serif;
  font-size: 32px;
  border: 2px solid white;
  border-radius: 5px;
  padding: 14px 28px;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
  text-align: center;
}

#welcome-button:hover, #welcomebtn:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1);   opacity: 1; }
}