body {
    background: #757F9A;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #D7DDE8, #757F9A);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #D7DDE8, #757F9A); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/*** BANNER ***/
.banner {
    margin-top: -10px;
    margin-left: -10px;
    position: relative;
    width: 100%;
    height: 210px;
}

/*** NAVIGATION ***/
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: 'Bangers', cursive;
    font-size: 30px;
}

li a:hover {
    background-color: #C789D9;
}

/*** HEADER STYLE ***/
h1 {
    text-align: center;
    font-family: 'Berkshire Swash', cursive;
}

/*** HERO IMAGE ***/
body, html {
    height: 100%;
}

.hero-image {
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/c/c1/HammockonBeach-banner.jpg");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    filter: grayscale(50%);
    margin-top: 35px;
}

.hero-text {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #030303;
}

/*** ABOUT SECTION ***/
.aboutcontent {
    width: 700px;
    border-style: solid;
    border-radius: 30px;
    background-color: white;
    margin-left: 350px;
    padding-left: 30px;
    padding-right: 100px;
    padding-top: 5px;
    padding-bottom: 5px;
}

p {
   font-family: 'Cabin', sans-serif; 
}

img {
    float: left;
}

/*** GRAPHICS SECTION ***/
.mickeymouse {
    float: left;
    padding-left: 60px;
}

.bunny {
   margin-left: 565px;
}

.koala {
    float: right;
    padding-right: 60px;
}

h3 {
    clear: both;
    font-family: cursive;
    padding-top: 15px;
    text-align: center;
}

/*** PHOTOGRAPHY SECTION ***/
.photographycontent {
    padding-left: 118px;
}

/*** SOCIAL MEDIA LINKS ***/
.fa {
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    float: right;
    margin-left: 10px;
    margin-top: 15px;
    margin-right: 10px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #3B5998;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
}

.fa-instagram {
    background: #bc2a8d;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
}

.fa-pinterest {
    background: #C92228;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
}

.fa-linkedin {
    background: #007bb6;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
}

/*** CONTACT FORM ***/
input[type=text], select, textarea {
    width: 100%; 
    padding: 12px;  
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    margin-top: 6px; 
    margin-bottom: 16px; 
    resize: vertical;
    font-family: fantasy;
    font-size: 15px;
}

input[type=submit] {
    background-color: #9A57F5;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #4A2D72;
}

.container {
    border-radius: 5px;
    background-color: #D9D7DB;
    padding: 20px;
}

/*** FOOTER ***/
footer {
    font-family: 'Italianno', cursive;
    font-size: 30px;
    text-align: center;
    padding-top: 10px;
    clear: both;
    width: 100%;
}