body {

    background-image: url(Beach.jpg);

    background-repeat: no-repeat;

    background-position: center;
    
    background-attachment: fixed;

    background-size: cover;

    background-color:aliceblue(105, 208, 203);

    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

    font-size: 12px;

    width: 60%;

    margin: 0 auto;

}

header {

    padding: 60px;

    text-align: center;

    background: #1abc9c0f;

    color: rgb(91, 23, 226);

    font-family:cursive;

    font-size: 100px;

    }

nav {

    text-align: center;

    font-size: 16px;

    padding: 10px 0;

    background-color:rgba(100, 148, 237, 0.616);

    -webkit-box-shadow: 7px 9px 10px -5px rgba (o,o,o,o.12);

    -moz-box-shadow: 7px 9px 10px -5px rgba (0,0,0,0.12);

    box-shadow: 7px 9px 10px -5px rgba (0,0,0,0.12);

}

nav ul li {

    display: inline;

    list-style-type: none;

    padding-left: 15px;

    padding-right: 15px;
}

#homeHero {

    background:rgb (0,214,199);

    background: linear-gradient (90deg, rgba (0,214,199,1) 0%, rgba (57,152,203,1) 48%);

    rgba (99,96,203,1) 100%;
    
    width: 70%;

    float: left;

    margin-right: 2%;

    padding: 4%;

    -webkit-box-shadow: 7px 9px 10px -5px rgba (0,0,0,0.12);

    -moz-box-shadow: 7px 9px 10px -50px rgba (0,0,0,0.12);

    box-shadow: 7px 9px 10px -5px rgba (0,0,0,0.12);

}

#sidebar {

    background-color:rgba(30, 143, 255, 0.171);

    width: 16%;

    float: left;

    -webkit-box-shadow: 7px 9px 10px -5px rgba (0,0,0,0.12);

    -moz-box-shadow: 7px 9px 10px -50px rgba (0,0,0,0.12);

    box-shadow: 7px 9px 10px -5px rgba (0,0,0,0.12);

    text-align: center;

    font-size: medium;

    padding: 5%;

}

footer {

    padding: 100px;

    text-align:left;

    background: #9fd6ca61;

    color: rgb(50, 46, 58);

    font-family:cursive;

    font-size: 20px;

    }

    * {
        box-sizing: border-box;
    }
    
    /* Style inputs */
    input[type=text], input[type=email], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 16px;
        resize: vertical;
    }
    
    input[type=submit] {
        background-color: #04AA6D;
        color: white;
        padding: 12px 20px;
        border: none;
        cursor: pointer;
    }
    
    input[type=submit]:hover {
        background-color: #45a049;
    }
    
    /* Style the container/contact section */
    .container {
        border-radius: 5px;
        background-color: #ccf0f180;
        padding: 10px;
    }
    
    /* Create two columns that float next to each other */
    .column {
        float: left;
        width: 50%;
        margin-top: 6px;
        padding: 20px;
    }
    
    /* Clear floats after the columns */
    .row:after {
        content: "";
        display: table;
        clear: both;
    }
    
    /* Responsive layout - when the screen is less than 480px wide, make the two columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 480px) {
        .column, input[type=submit] {
            width: 100%;
            margin-top: 0;
    /* Responsive layout - when the screen is less than 768px wide, make the two columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 768px) {
        .column, input[type=submit] {
            width: 100%;
            margin-top: 0;
        }
    }