/* Estilo geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: orange;
    overflow: hidden;
    flex-direction: column;
  }

  img {
    width: 255px;
    margin: 15px;
  }
  
  .welcome-container {
    text-align: center;
    z-index: 1;
    width: 90%;
    max-width: 500px;  /* Limita o tamanho da área de conteúdo */
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 3s ease-in-out;
  }
  
  /* Botão */
  button {
    padding: 12px 30px;
    font-size: 1.2rem;
    background-color: #FF5733;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  button:hover {
    background-color: #C0392B;
    transform: scale(1.1);
  }

  .beta-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none; /* Inicialmente escondido */
}

.beta-message button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #721c24;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.beta-message button:hover {
    background-color: #5a1a18;
}

  
  /* Animação de fading no texto */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  body {
    animation: floatingBackground 10s infinite alternate;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
  
    button {
      font-size: 1rem;
      padding: 10px 25px;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 2rem;
    }
  
    button {
      font-size: 0.9rem;
      padding: 8px 20px;
    }
  }
  