

/*from parent site*/
* {
    font-family: 'Avenir';
    font-weight: normal;
    font-style: normal;
}

/* Apply Avenir Sitewide */
body, h1, h2, h3, p, input, button, label {
    font-family: 'Avenir', sans-serif;
}

/* Heading Sizes */
h1 {
    font-size: 5.2rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

/* Body Text */
p, input, button, label {
    font-size: 1rem; /* adjust if needed based on your site */
    line-height: 1.5;
}

.button,
a.button,
button,
input[type="submit"] {
    font-family: 'Avenir';
    font-weight: 600;
    font-size: 1rem;
    background-color: #000000; /* black fill */
    color: #ffffff; /* white text */
    padding: 0.6em 1.5em; /* top & bottom, left & right */
    border: none;
    border-radius: 2px; /* custom corners */
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover State */
.button:hover,
a.button:hover,
button:hover,
input[type="submit"]:hover {
    background-color: #222222; /* slightly lighter black on hover */
    color: #ffffff;
}
