body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

header {
    padding: 20px;
    text-align: center;
}

header .logoFull {
    max-width: 150px;
}
h1 {
    font-size: 2em;
    margin: 20px 0;
    text-align: center;
}
p {
    font-size: 1em;
    line-height: 1.6;
    margin: 10px 20px;
    text-align: center;
}
h2 {
    font-size: 1.5em;
    margin: 20px 0;
    text-align: center;
}
/* Style for QR buttons */
.QRbutton a {
    display: block;
    width: 50%;
    margin: 10px auto; /* Center the button horizontally */
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #004080; /* Button background color */
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.QRbutton a:hover {
    background-color: #002d5a; /* Darker shade on hover */
}