html, body{
    height: 100%;
    min-height: 900px;
}
body{
    background-image: url("../assets/images/pages/farmblur.jpg");
    background-size: cover;
    background-position: center bottom;
}
#bottompage{
    position: fixed;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.5);
}
#bottompage h1{
    padding-top: 10px;
}
#bottompage #bottomLinks{
    margin: 0;
}
.page-content{
    width: 1000px;
    min-height: 600px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 20px auto;
}
.page-content-full{
    padding: 20px;
}
.page-content-full p {
    font-family: Ubuntu;
}
.page-content-left{
    width: 650px;
    height: 600px;
    float: left;
    display: inline-block;
    background-size: cover;
    background-position: center bottom;
}
.page-content-left#pcl-vandijck{
    background-image: url("../assets/images/pages/vandijck.png");
}
.page-content-left#pcl-welkom{
    background-image: url("../assets/images/pages/welkom.png");
}
.page-content-right{
    width: 330px;
    height: 580px;
    float: left;
    display: inline-block;
    padding: 10px;
}
.page-content-right a{
    color: black;
    font-family: Ubuntu, norwester;
}
.page-content h2{
    text-align: left;
}
/* form */
form{
    padding-top: 150px;
}
input{
	font-family: norwester, langdon, 'Open Sans', sans-serif;
}
input[type = "email"], input[type = "text"], input[type = "password"]{
    width: 300px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-width: 0 0 1px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 1s;
    margin: 20px 0;
    display: block;
    font-size: 20px;
}
input[type = "submit"]{
    width: 300px;
    height: 50px;
    border-style: solid;
    border-color: black;
    border-width: 1px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 1s;
    margin: 20px 0;
    display: block;
    cursor: pointer;
    font-size: 20px;
}
input[type = "submit"]:hover{
    background-color: white;
    transition: background-color 1s;
}
input:focus{
    outline: none;
}