h1 {
  font-family: Arial,Helvetica,sans-serif;
  font-weight: bold;
  font-style: normal;
  text-transform: none;
  text-align: center;
  font-size: xx-large;
  line-height: normal;
  text-decoration: none;
}
h2 {
  font-family: Arial,Helvetica,sans-serif;
  font-weight: bold;
  font-style: normal;
  text-transform: none;
  text-align: left;
  font-size: large;
  line-height: normal;
  text-decoration: none;
}
p {
  font-family: "Courier New",Courier,monospace;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-align: left;
  font-size: large;
  line-height: normal;
}
a {
    font-family: Arial,Helvetica,sans-serif;
    font-size: large;
    font-weight: bold; /* Make link text bold */
}
ul {
  font-family: "Courier New",Courier,monospace;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-align: left;
  font-size: large;
  line-height: normal;
}
.password-input {
  font-family: Arial,Helvetica,sans-serif;
  font-weight: bold;
  font-size: 16px;                 /* Font size */
    padding: 8px;                   /* Add some padding */
    border: 1px solid #ccc;         /* Border style */
    border-radius: 4px;             /* Rounded corners */
    width: 100%;                    /* Full width */
    box-sizing: border-box;         /* Ensure padding doesn't affect width */
}
/* Style for the large button */
        .large-button {
            display: inline-block;
            padding: 2vh 3vw; /* Adjust padding to make the button larger or smaller */
            font-size: x-large; /* Adjust font size for the button text */
            white-space: nowrap; 
            background-color: #007bff; /* Button background color */
            color: #fff; /* Text color */
            text-decoration: none; /* Remove underlines from the link */
            border: none; /* Remove button border */
            cursor: pointer;
            border-radius: 5px; /* Rounded corners for the button */
        }

        /* Hover effect for the button */
        .large-button:hover {
            background-color: #0056b3; /* Change background color on hover */
        }

/* Style for the small button */
        .small-button {
            display: inline-block;
            padding: 1vh 1vw; /* Adjust padding to make the button larger or smaller */
            font-size: 16px; /* Adjust font size for the button text */
            white-space: nowrap; 
            background-color: #007bff; /* Button background color */
            color: #fff; /* Text color */
            text-decoration: none; /* Remove underlines from the link */
            border: none; /* Remove button border */
            cursor: pointer;
            border-radius: 5px; /* Rounded corners for the button */
        }

        /* Hover effect for the button */
        .small-button:hover {
            background-color: #0056b3; /* Change background color on hover */
        }
.download-button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            color: white;
            background-color: #007bff;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            border: none;
            cursor: pointer;
        }
        .download-button:hover {
            background-color: #0056b3;
        }