body {
    text-align: center;
    font-family: Helvetica, sans-serif;
    color: black;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.button {
    background-color: #ffcc00;
    border: none;
    border-radius: 20px;
    color: black;
    padding: 5px;
    text-align: center;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
    font-size: 18px;
    width: 70%; /* Adjust based on preference */
    max-width: 200px; /* Maximum width */
    cursor: pointer;
}
.button:hover {
    background-color: rgb(255, 205, 0); /* Lighter shade for hover */
    box-shadow: 0 4px #666;
    transform: translateY(-1px);
}
.button:active {
    box-shadow: 0 2px #666;
    transform: translateY(2px);
}

.buttonSmall {
    background-color: #ffcc00;
    border: none;
    border-radius: 10px;
    color: black;
    padding: 10px;
    text-align: center;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}
.buttonSmall:hover {
    background-color: rgb(255, 205, 0); /* Lighter shade for hover */
    box-shadow: 0 4px #666;
    transform: translateY(-1px);
}
.buttonSmall:active {
    box-shadow: 0 2px #666;
    transform: translateY(2px);
}

.logo {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.footerLogo {
    width: 100px;
}

.footerLogo50 {
    width: 50px;
}

.ornament {
    max-width: 100%;
    height: auto;
}

.headline {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 40px 0;
}

.footer {
    font-size: 14px;
    color: black;
    margin: 20px 0;
}
.question {
    display: inline-block;
}
.quiztable {
    margin: 20px;
    width: 80%;
    max-width: 600px;
    display: inline-block;
}
td {
    padding: 10px;
}

.bold {
    font-weight: bold;
}

.link {
    color: black;
    font-weight: bold;
}

.text {
    text-align: left;
    margin: 20px;
    line-height: 1.5;
}