@font-face {
    font-family: headingFont;
    src: url(Fonts/temp_heading.woff2);
}
@font-face {
    font-family: contentFont;
    src: url(Fonts/temp_content.woff2);
}
.footer {
    width: 100%;
    font-size: relative;
    display: flex;
    flex-wrap: wrap;
    background-color:#006A4F;
    color:rgb(234, 245, 181);
    font-family: contentFont;
    justify-content: space-between;
    text-align: center;
}
.footer div {
    padding-top: 30px;
    padding-bottom: 20px;
}
.footerCol1 {
    flex: 1;
    min-width: 250px;
}
.footerCol2 { 
    flex: 1;
    min-width: 250px;
    text-decoration: none;
}
.footerCol2 a {
    text-decoration: none;
}
.footerCol3 {
    flex: 1;
    min-width: 250px;
}
.footerTitle {
    font-family: headingFont;
    font-weight: lighter;
}
.webLinks {
    transition: all 0.2s;
    text-decoration: underline;
}
.webLinks:hover {
    color:rgb(224, 245, 123);
}
.footerContact {
    height: 40px;
    width: auto;
    padding-left: 5px;
    padding-right: 5px;
    transition: all 0.2s;
    cursor: none;
}
.footerContact:hover {
    transform: scale(1.1);
    filter: brightness(1.3);
}   