﻿.backgroundImage {
    max-height: 300px;
    overflow: hidden;
}

.background {
    max-height: 300px; /* Set the max height */
    width: 100%; /* Variable width */
    display: flex;
    justify-content: center; /* Center horizontally if needed */
    align-items: center; /* Center vertically */
    overflow: hidden; /* Hide overflowing parts */
}

    .background .backgroundImage {
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        object-fit: cover; /* Makes the image cover the container */
    }

.contentContainer {
    padding-top: 30px;
    padding-bottom: 10px;
}

.title {
    font-size: 30px; /* could be 16px */
    font-family: 'Century Gothic';
    font-weight: 300;
}

.headerBackground {
    background-color: #f2f2f2;
    padding-top: 50px;
    padding-bottom: 30px;
}

.header {
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 10px;
    line-height: 1.5em;
    font-family: 'Century Gothic';
    font-weight: 300;
    color: black;
}

.header2 {
    font-size: 30px;
    font-family: 'Century Gothic';
    font-weight: 300;
    color: black;
}

.header3 {
    font-size: 20px;
    font-family: 'Century Gothic';
    font-weight: 300;
    color: black;
}

.text {
    font-size: 17px; /* could try 15 */
    line-height: 2em;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    /*font-family: 'Merriweather', Georgia, "Times New Roman", serif;*/ /* Arial maybe? */
}

.textList {
    font-size: 17px; /* could try 15 */
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    /*font-family: 'Merriweather', Georgia, "Times New Roman", serif;*/ /* Arial maybe? */
}

.centerText {
    text-align: center;
}

.linkDiv {
    padding-left: 15px;
    padding-right: 15px;
}

hr {
    border-top: 1px solid #808080;
}

.greyBackground {
    background-color: #e2e2e2;
}

.infoContainer {
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border: 1px solid #c2c2c2;
    padding: 15px;
}