h1,
h2,
h3,
.contentWrapper div {
    text-align: left;
}

main,
#staticContent {
    background-color: #F0F0F0;
}

h4 {
    margin: 10px 0px 4px 0px;
}

p {
    color: black;
    text-align: left;
    margin: 10px 0px 4px 0px
}

.contentWrapper a {
    font-weight: 300;
    color: var(--gdtfBlue);
    word-break: break-word;
}

.contentWrapper a:hover {
    color: var(--gdtfOrange);
}

.contentWrapper {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    margin-top: 136px;
    font-size: 1rem;
    line-height: 32px;
    color: black;
    padding: 10px;
}

hr {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

ol,
ul {
    padding: 0;
    margin: 0;
    padding-left: 20px;
    margin-bottom: 20px;
    list-style: disc;
}

ol.noList,
ul.noList {
    list-style: none;
}

li {
    text-align: left;
    font-weight: 300;
}

.flex-container {
    display: flex;
    flex-direction: column;
}

.small,
small {
    font-size: 80%;
    font-weight: 400;
}

.termsBox {
    height: 50vh;
    overflow: auto;
    margin-bottom: 40px;
}
.checkText {
    color: #000;
    font-weight: bold;
}
.checkText input {
    transform: scale(1.5); /* Increase size by 1.5x */
    margin: 10px; /* optional, for spacing */
}
.checkButton {
    margin: 20px auto;
}
.termsPopup {
    width: 300px;
    height: 200px;
    position: fixed;
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid red;
    border-radius: 20px;
}
#termsHint {
    color: red;
    font-weight: bold;
}