* {
  margin:0;
  padding:0;
  box-sizing: border-box;

}
html{
  height: 100%;
}
body {
  background: url(./img/bg_try_4.jpg) no-repeat center center fixed;
  background-size: cover;
  font-family: 'Lato', sans-serif;
  color: white;
  height: 100%;
  position: absolute;
  padding: 20px 20px 20px 20px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  line-height: 1.4;
}

h1 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5em;
  font-weight: 200;
}

h2 {
  font-size: 1.7em;
  margin: 0.5em 0;
  font-weight: 300;
}

p {
  margin-bottom: 0.5em;
}

.title {
  font-size: 50px;
}

a {
  text-decoration: none;
}

nav {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  font-size: 30px;
  font-weight: 200;
}
nav > a {
  text-decoration: none;
  color: white;
}
nav > a:hover {
  color: #CCC;
}
nav > a:active {
  color: #999;
}

header {
  width: 370px;
}

.header {
  color: white;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: auto;
}


.logo {
  height: 70px;
  width: 70px;
  vertical-align: middle;
}



.recipe{
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  list-style-type: none;
  box-sizing: border-box;
  padding: 0;
}
ul {
    list-style-type: none;
}
ul.recipe > li{
  margin-top: 1em;
}
.content {

/*
  display: flex;
  flex-direction:column;
  align-items: stretch;

  height: 100%;
  margin: auto 0 auto 50px;

  justify-content: space-between;
  align-items: flex-end;*/
}

section {
  /*display: flex;
  align-self: flex-end;
  */
  width: 380px;
}

#contactform {
  display: flex;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 200;
}

#contactform>* {
  margin: 10px 0 10px 0;
}

.form-controll {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 200;
  background-color: transparent;
  border:none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.btn{
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  height: 36px;
  background-color: transparent;
}

.btn:hover {
  box-shadow: 0 0 3px rgba(255,255,255,.12),0 1px 4px rgba(255,255,255,.24);
}


::-webkit-input-placeholder {
   color: rgba(255,255,255,0.5);
  font-family: 'Lato', sans-serif;
  font-weight: 300;

}

:-moz-placeholder { /* Firefox 18- */
  color: rgba(255,255,255,0.5);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: rgba(255,255,255,0.5);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

:-ms-input-placeholder {
   color: rgba(255,255,255,0.5);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 800px) {
  body {
    background: none;
    background-color: black;
  }
  header {
    width: 100%;
  }

  section {
    width: 100%;
  }
}
