/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* White background */
    color: #333333; /* Dark text color for readability */
    margin: 0;
    padding: 0;
    font-weight: 400; /* Regular font weight for body text */
    touch-action: manipulation; /* Prevent double-tap to zoom */
    -webkit-user-select: none; /* Prevent text selection */
    -webkit-touch-callout: none; /* Prevent callout, like copy/paste */
}



.Info_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

  }
  
  .Info_box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 400px;
    margin: 200px auto;
  }
  
  h1 {
    font-size: 24px;
    color: #444444;
    margin-bottom: 20px;
  }
  
  .info_btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #444444; /* Green color for success */
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .info_btn:hover {
    background-color: #2e2e2e; /* Slightly darker green on hover */
  }
  

@media (max-width:550px) {
  .Info_box{
    max-width: 300px;
  }
}

@media (max-width:450px) {
  .Info_box{
    max-width: 280px;
  }
}