@charset "UTF-8";
/* CSS Document */

body {
    background-color: #8C7759;
    color: #473322;
		padding-top: 2.5em;
	padding-bottom: 2.5em;

}

/* Container Color */
.container-top {
	padding-top: 1em;
	padding-bottom: 1em;
}
.container-main {
	background-color: #D3C7A7;
}


.banner {
 height: 100vh;
 
 /* Flexbox */
 display: flex;
 align-items: center;
}


/* Landing Page */
.landing {
    background-image: url("../images/prison_light_landing.jpg");
    height: 1000px;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*flex box in landing*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*text elements in landing*/
    text-align: left;
    color: #D3C7A7;
    text-shadow: 1px 3px 3px #000;
}
.landing p {
    font-size: 1em;
}
.hero {
    background-image: url(../images/prison_light.jpg);
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.aside {
    background-color: #3E3027;
    color: #D3C7A7;
}
.boardmember {
    margin-top: 2.5em;
	display: flex;
    justify-content: center;
    align-items: center;
}

/* Colors */
.bg-khaki-1 { background-color: #D3C7A7 !important; }
.bg-khaki-2 { background-color: #C1B393 !important; }
.bg-khaki-3 { background-color: #A69676 !important; }
.bg-khaki-4 { background-color: #8A7A5A !important; }
.bg-brown-1 { background-color: #7B6D5B !important; }
.bg-brown-2 { background-color: #5F5143 !important; }
.bg-brown-3 { background-color: #4B3D32 !important; }
.bg-brown-4 { background-color: #3E3027 !important; }
.bg-straw-1 { background-color: #ECD4A1 !important; }
.bg-straw-2 { background-color: #C8AD79 !important; }
.bg-straw-3 { background-color: #AE905C !important; }
.bg-straw-4 { background-color: #917343 !important; }
.bg-millbrook-1 { background-color: #8C7759 !important; }
.bg-millbrook-2 { background-color: #6D5840 !important; }
.bg-millbrook-3 { background-color: #56412E !important; }
.bg-millbrook-4 { background-color: #473322 !important; }
.text-straw-1 {color: #ECD4A1 !important;}
.text-straw-2 {color: #C8AD79 !important;}
.text-straw-3 {color: #AE905C !important;}
.text-straw-4 {color: #917343 !important;}
.text-millbrook-1 {color: #8C7759 !important;}
.text-millbrook-2 {color: #6D5840 !important;}
.text-millbrook-3 {color: #56412E !important;}
.text-millbrook-4 {color: #473322 !important;}
.text-black {color: #000 !important;}
.text-white {color: #fff !important;}

