* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 2vw;
}

nav ul a {
    text-decoration: none;
    padding: 1.5vw;
    color: black;
    width: 10vw;
}

nav ul a:hover {
    background-color: rgba(167,167,167, 0.2);
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.75),rgba(0, 0, 0, 0.75)), url("images/deer.jpg");
    width: 100%;
    height: 65vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

header h1 {
    text-align: center;
    font-size: 1.5em;
    font-weight: 100;
    padding-top: 30vh;
    color: white;
}

main section {
    padding: 10vw;
    display: flex;
}

main section:nth-child(2n) {
    background-color: #EFEFEF;
}

main section > * {
    clear: none;
}

main section article h1 {
    width: 100%;
    font-size: 1.4em;
    padding-top: 6.5vw;
}

main section article div {
    background: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)), url('images/deer.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    padding-top: 4vw;
    padding-bottom: 4vw;
    height: 20vw;
}

main section article p {
    padding-top: 4vw;
    letter-spacing: normal;
}

main section article {
    text-align: center;
    width: 100%;
}

main section > .image {
    width: 25vw;
    background-position: center center !important;
    background-repeat: no-repeat;
    background-size: cover;
    flex: 2;
    border-radius: 0.2vw;
}

main section > .main {
    flex: 3;
    padding: 4vw;
    padding-left: 6vw;
}

main section span h1 {
    text-align: center;
    padding-bottom: 2vw;
    font-weight: 100;
    color: black;
}

main section span p {
    color: rgb(66, 66, 66);
}

#contactForm {
    display: flex;
    flex-direction: column;
}

#contactForm h1 {
    text-align: center;
    padding-bottom: 2vw;
}

form {
	text-align: center;
    width: 100%;
}

form div {
    clear: both;
    width: 100%;
	margin: 0.5vw;
}

form div * {
    display: inline-block;
	text-align: center;
}

form div label {
    width: 30%;
    vertical-align: top;
    font-size: 1.2em;
    padding-bottom: 5vw;
}

form div input, form div textarea  {
    padding: 1.5vw;
    border: none;
    border: 1px solid #c6c6c6;
    width: 50%;
}

form div label span {
    text-align: center;
    font-size: 70%;
}

#message {
    padding-bottom: 3vw;
}

#submit {
    margin: 3vw;
    padding: 0.5vw;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: 0.3s;
}

#submit:hover {
    border: 1px solid #ccc;
    transform: scale(1.2);
}

#website {
    display: none;
}

footer {
    background-color: rgb(32, 32, 51);
    color: white;
    padding: 4vw;
    padding-bottom: 2vw;
}

footer nav ul a li{
    color: white !important;
}

footer h1, footer h4 {
    font-weight: 100;
}

footer h4 {
    text-align: right;
}
