*, *:before, *:after {
    box-sizing: border-box;
}
html {
    font-size: 21px;
    font-family: 'Open Sans';
}
html, body {
    height: 100%;
}
h1 {
    font-family: 'Raleway';
    font-size: 2.7em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #222;
    margin-bottom: 0.3em;
}
p {
    font-weight: 200;
    color: #525252;
}
.Main {
    width: 50%;
    height: 100%;
    position: fixed;
	left:0px;
	top:0px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 30%), /*url(http://fillmurray.com/1050/1050);*/
    background-size: cover;
    background-position: center 30%;
}
.Main .navigation-panel {
    height: 30px;
    width: 40px;
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
    z-index: 2;
}
.Main .navi{
    height: 3px;
    width: 35px;
    background: #fff;
    position: absolute;
    top: 10px;
    left: 0;
    transition: 0.2s;
    border-radius: 10% 10% 10% 10% / 40% 40% 40% 40%;
}
.Main .navi:before, .Main .navi:after {
    content: '';
    position: absolute;
    background: #fff;
    height: 3px;
    width: 100%;
    transition: 0.2s;
    border-radius: 10% 10% 10% 10% / 50% 50% 50% 50%;
}
.Main .navi:before {
    top: 8px;
}
.Main .navi:after {
    top: -8px;
}
.Main .logo {
    color: rgb(255, 255, 255);
    font-family: 'Over the Rainbow';
    font-size: 1.9em;
    margin: 0 0 0 85px;
    line-height: 2;
}
.Main nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding-top: 60px;
    font-family: 'Raleway';
    font-size: 2em;
    display: none;
    background: rgba(0, 0, 0, 0.8);
}
.Main nav ul {
    margin: 0 0 0 25px;
    padding: 0;
}
.Main nav li {
    list-style-type: none;
    margin: 25px 0;
    position: relative;
}
.Main nav a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}
.content {
    width: 50%;
    min-height: 100%;
    margin-left: 50%;
    padding: 4em 1.5em;
    overflow: hidden;
}
.bg {
    /* The image used */
    background-image: url("fire in the sky_01.jpg");
  
    /* Full height */
    height: 100%; 
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  
  

.Main H1{
	position: absolute;
    bottom: 20px;
    left: 20px;
	color: rgb(255, 255, 255);
}
@media (max-width: 768px) {
    html {
        font-size: 18px;
   }
    .Main {
        height: 500px;
        width: 100%;
        display: block;
        position: relative;
        padding: 1px;
   }
    .Main nav {
        font-size: 1.7em;
   }
    .content {
        margin-left: 0;
        padding-top: 0;
        width: 100%;
   }
}
