body {
    margin: 0; /* Remove default body margin */
    font-family: Arial, sans-serif; /*Set the font family for the text within the element to Arial  */
    display: flex; /*  Enable the Flexbox model for the element */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* centers the elements horizontally within the container */
    background-color: #f4f4f4; /* set the background color of the element */
    min-height: 100vh; /* ensure that the element's min height  is 100% of the viewpoint height */
  }

  #warningMessage {
    display: none;
    color: #dc3545;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    border: 2px solid #dc3545;
    border-radius: 5px;
    background-color: #f8d7da;
  }

  header {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    padding: 20px 40px;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    position: sticky; /* Make the header sticky */
    top: 0; /* Stick to the top of the page */
    z-index: 1000; /* Ensure the header stays above other content */
    display: flex; /* Use flexbox to align logo and text */
    align-items: center; /* Vertically center items */
    justify-content: center; /* Center content horizontally */
  }
  
  .header-logo {
    height: 100px; /* Adjust the height of the logo */
    margin-right: 20px; /* Add space between the logo and the text */
  }

header h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
}

header p {
  font-size: 1.2rem;
  margin: 10px 0 0;
  opacity: 0.9;
}

  .card {
    margin-top: 30px; /* Add space between header and card */
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    margin-bottom: 20px; /* Add space between card and button */
  }

  .card h2 {
    margin-top: 0;
  }

  .card ol {
    text-align: left;
    list-style-position: outside; /* Aligns numbers with text */
    padding-left: 1em; /* Remove default padding */
    margin: 0; /* Remove default margin */
  }

  .card ol li {
    text-align: left;
    margin-left: 0; /* Add space between number and text */
    padding-left: 0; /* Remove previous padding */
    margin-bottom: 8px; /* Add spacing between items if needed */
  }

  button {
    padding: 20px 40px; /* Increased padding for a larger button */
    font-size: 20px; /* Larger font size */
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth hover effect */
  }
  
  button:hover {
    background-color: #0056b3;
  }

  footer {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    padding: 20px 40px;
    text-align: center;
    width: 100%;
    margin-top: auto; /* Push the footer to the bottom of the page */
  }

  #warningMessage {
    display: none;
    color: #dc3545;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    border: 2px solid #dc3545;
    border-radius: 5px;
    background-color: #f8d7da;
  }