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 */
}

/* 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 */
        }