h1 {
    font-size: 50px;
    color: black;
    text-shadow: none;
    margin-top: 40px;
    margin-bottom: 20px;
}
h3 {
    font-size: 20px;
    color: black;
    text-shadow: none;
    margin-bottom: 10px;
    text-align: center;
    max-width: 90%;
    padding-top: 0;
}

.flexCol {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shadowBox {
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    border-radius: 7px;
    padding: 20px;
}

.formTextbox {
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    padding: 5px 20px;
    line-height: 1.85;
}
.formButtonTangerine {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.85;
    padding: 5px 15px;
    border: 0;
    border-radius: 8px;
    background-color: var(--tangerine);
    transition: background-color .5s ease;
}
.formButtonTangerine:hover {
    background-color: var(--tangerine-light);
}
.gapMedium {
    gap: 20px;
}

@media (max-width: 640px) {
    h1 {
        font-size: 30px;
    }
    h3 {
        font-size: 12px;
    }
}