/* General body styles */
body {
    background-color: #CCC;
    font-family: Georgia, "Times New Roman", Times, serif;  
}

/* Entire design drop shadow */
#all {
    width: 800px;
    height: 700px;
    border: 3px solid #039;
    border-radius: 15px;
    margin: 20px auto;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.5);
}

/* Navigation bar gradient */
#top {
    width: 770px;
    height: 40px;
    padding: 5px 15px;
    font-size: 1.2em;
    border-bottom: 1px solid black;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Sidebar styles */
#left.side {
    width: 150px;
    height: 600px;
    border-right: 2px solid black;
    padding: 5px;
    background-color: green;
    float: left;
    font-family: 'Pacifico', cursive; /* Google font applied */
    font-size: 1.5em;
    color: white;
}

/* Right section */
#right {
    width: auto;
    height: 580px;
    padding-top: 30px;
    text-align: center;
    background: #DDDDDD;
}

/* Clear floats */
.clear {
    clear: both;
}

/* Footer styles */
footer {
    width: 800px;
    height: 36px;
    background: #fff;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding-top: 4px;
    text-shadow: 2px 2px 2px #555; /* dark gray drop shadow */
}

/* Boat image effects */
.boat {
    width: 500px; /* original size */
    height: auto;
    transform: rotate(-5deg) skew(5deg, 0deg); /* position effect */
    filter: sepia(20%); /* 20% sepia */
    transition: transform 0.5s ease; /* smooth hover */
}

.boat:hover {
    transform: scale(1.5) rotate(-5deg) skew(5deg, 0deg); /* enlarge 50% on hover */
}
