﻿html {
    scroll-behavior: smooth;
}

/*.container {
    position: relative;
    width: 50%;
}*/

.image1 {
    display: block;
    width: 100%;
    margin-top: 20px;
}

.overlay1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
}

.container:hover .overlay1 {
    opacity: 0.8;
}

.text1 {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.mission-statement p {
    font-size: 25px;
    line-height: 40px;
}


