/* FONTS */
@font-face {
    font-family: norwester;
    src: url(../assets/fonts/norwester.otf);
}
@font-face {
    font-family: langdon;
    src: url(../assets/fonts/langdon.otf);
}
/* END FONTS */

body, html{
	margin: 0;
	padding: 0;
	font-family: norwester, langdon, 'Open Sans', sans-serif;
	background-color: rgb(235, 235, 235);
}
#top{
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 50px;
}
#topContent{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
#topMenu{
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 40px;
}
#topMenu table{
    width: 100%;
}
#topMenu p{
    text-transform: uppercase;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    color: white;
    float: left;
    cursor: pointer;
    border-style: solid;
    border-color: rgba(0,0,0,0);
    border-width: 0 0 3px 0;
    transition: border-color 1s;
    font-size: 16px;
}
#topMenu p:hover{
    border-color: white;
    transition: border-color 1s;
}
#topMenu p img{
    height: 16px;
    padding-right: 5px;
}
#topMenuRight p{
    text-align: right;
    float: right;
}
#topMenu a{
    text-decoration: none;
    color: white;
}
h1{
    font-family: norwester;
    /*text-shadow: -3px -3px rgba(51, 153, 255, 0.7);*/
    text-shadow: -3px 3px rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 30px;
    padding-top: 10px;
    padding-left: 15px;
    margin: 0;
}
h1 span{
    font-size: 18px;
}
p {
    font-family: norwester;
}
p.note{
	color: gray;
}
h2.normalSlogan{
    text-align: center;
    font-family: norwester;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    margin: 0;
    padding-top: 20px;
}
h2.normalSlogan img{
    height: 20px;
}
a.largeSignupButtonLink{
    color: black;
    text-decoration: none;
}
.action{
    cursor: pointer;
}
.largeSignupButton{
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    border-style: solid;
    border-color: black;
    border-width: 1px;
    text-align: center;
    background-color: rgb(221, 221, 221);
    transition: background-color 1s;
    margin-top: 50px;
    cursor: pointer;
}
.largeSignupButton:hover{
    background-color: white;
    transition: background-color 1s;
}
.largeSignupButton p{
    margin: 0;
    padding: 10px;
    font-size: 28px;
    text-transform: uppercase;
    text-shadow: -3px 3px rgba(0, 0, 0, 0.2);
}
/* Content items */
.contentItemContent{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}
/* CI1 */
#contentItem1{
    height: 800px;
    width: 100%;
    background-image: url("../assets/images/farm.jpg");
    background-size: cover;
    background-position: center bottom;
    transition: background-image 1s;
}
#contentItem1BackgroundLayer{
    background-color:white;
    opacity: 0.3;
    position: absolute;
    height: 800px;
    width: 100%;
}
#contentItem1ForegroundLayer{
    position: absolute;
    width: 100%;
    height: 100%;
}
#contentItem1CentralLogo{
    display: block;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 200px;
}
#contentItem1.hoverBackground{
   background-image: url("../assets/images/farmblur.jpg");
   transition: background-image 1s;
}
/* CI2 */
#contentItem2{
    background-color: rgb(235, 235, 235);
    width: 100%;
    height: 500px;
}
#contentItem2IconsTable{
    padding-top: 100px;
    margin-left: auto;
    margin-right: auto;
}
#contentItem2IconsTable td{
    text-align: center;
    vertical-align: top;
}
#contentItem2IconsTable img{
    width: 40px;
    padding: 5px;
    padding-top: 20px;
}
#contentItem2IconsTable .iconDiv{
    border-radius: 50%;
    width: 75px;
    height: 75px;
    text-align: center;
    background-color: rgb(221, 221, 221);
    margin-left: auto;
    margin-right: auto;
}
#contentItem2IconsTable p{
    font-size: 14px;
    max-width: 200px;
}
#contentItem2IconsTable .iconTitle{
    font-size: 20px;
}
/* CI3 */
#bottom{
   height: 200px;
   width: 100%;
   background-image: url("../assets/images/farm.jpg");
   background-size: cover;
   background-position: center bottom;
}
#bottomBackgroundLayer{
    background-color: darkgray;
    opacity: 0.6;
    position: absolute;
    height: 200px;
    width: 100%;
}
#bottomForegroundLayer{
    position: absolute;
    width: 100%;
    height: 200px;
}
h1.bottomTitle{
    text-align: center;
    padding-top: 50px;
}
#bottomLinks{
    color: white;
    margin-top: 80px;
    text-align: center;
}
#bottomLinks a{
    font-size: 15px;
    cursor: pointer;
    color: white;
    text-decoration: none;
}
#bottom a:hover{
    text-decoration: underline;
}
/* MESSAGE */
.message{
    width: 298px;
    border-style: solid;
    border-color: #ff8706;
    border-width: 1px;
    background-color: rgba(255, 135, 6, 0.2);
    font-weight: 400;
}
.message p{
    font-family: Ubuntu, norwester;
    font-weight: 400;
    padding: 5px;
    margin: 0;
}
.message a{
    color: #ff8706;
    cursor: pointer;
}