
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0; background-repeat:no-repeat; background-size:cover; 
    background-image:url("../images/land1.png");
        height:600px;width:100%;
        color:#181818; 
}

nav { display: flex; align-items: center; justify-content: space-between; background-color: #fff; 
    padding: 1em; } 
    
    nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
    nav ul li { margin-right: 1em; } 
    nav ul li a { color: #555; text-decoration: none; padding: 0.5em; border-radius: 4px; } 
    nav ul li a:hover { text-decoration: underline;} 
    nav .site-name {  color:#E65C50; font-size: 1.5em; font-family: billabong;}

header {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 100px;
}
.header-span{display:block; font-size: 1.5em;}
header h1{font-size: 3em; color:#FF6F61;}

header div{width:60%; }
header p{font-size: 1em; width:50%;}

.subscribe-form {
    position: absolute;
    right: 70px;
    top: 520px;
    background-color: #fff;
    padding: 2em;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.subscribe-form h2 {
    margin: 0 0 1em 0;
}
.subscribe-form input[type="email"] {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
}
.subscribe-form button {
    padding: 0.5em;
    border: none;
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

.subscribe-form button:hover { background-color: #E65C50; }

@media(max-width:730px){
    
    body{ background-image:url("../images/land1_mobile.png");}
    nav { display:flex; align-items: left;}
    nav ul li { margin-right:5px; } 
    nav .site-name {font-size: 12px; color:#E65C50;}

    header h1{font-size: 32px;}
    header div{width:100%; }

    .subscribe-form {
        position: absolute;
        right: 45px;
        top: 520px;
        background-color: #fff;
        padding: 2em;
        box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    }
}