body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: rgb(28, 154, 213);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .container {
      background-color: white;
      padding: 40px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      max-width: 600px;
      width: 90%;
    }

    .emoji {
      font-size: 40px;
    }

    h1 {
      font-size: 32px;
      margin: 10px 0;
    }

    p {
      font-size: 20px;
      margin: 30px 0;
      color: #333;
    }

    button {
      padding: 12px 30px;
      font-size: 18px;
      background-color: #4da9ff;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #2f8ae6;
    }