* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: url('fundotati.jfif') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
  }
  
  .welcome-message h1 {
    font-size: 3em; /* Aumenta o tamanho do título */
    color: #000; /* Cor preta para o título */
    margin-bottom: 15px;
    font-weight: bold; /* Deixa o texto mais destacado */
    text-shadow: 
      0 0 5px #ff6a88,   /* Contorno rosa */
      0 0 10px #ff6a88,  /* Contorno rosa mais forte */
      0 0 15px #ff6a88,  /* Contorno rosa mais intenso */
      0 0 20px #ff6a88;  /* Maior intensidade de contorno */
  }
  
  .instruction-text {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 0 5px #ff9a8b, 0 0 10px #ff9a8b; /* Efeito de sombra para destaque */
  }
  
  .booking-button {
    padding: 15px 30px;
    background-color: #ff6a88;
    color: #fff;
    font-size: 1.2em;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  
  .booking-button:hover {
    background-color: #ff9a8b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Media Queries para telas pequenas (dispositivos móveis) */
  @media (max-width: 768px) {
    .container {
      padding: 20px;
      width: 90%;
    }
  
    .welcome-message h1 {
      font-size: 2.5em;
    }
  
    .instruction-text {
      font-size: 1.1em;
    }
  
    .booking-button {
      font-size: 1.1em;
    }
  }
  