* {
box-sizing: border-box;
margin:0;
padding:0;
}

body {
    background:#E3DED9;
    font-family: 'Pavanam', sans-serif;
}


a:link {
    text-decoration:none;
    color: #4B6090;
}

a:visited {
    text-decoration:none;
    color: #4B6090;
}

a:hover {
    text-decoration:none;
    color: #ddd;
}
.outer {
    width:1005px;
    background: #f8f8f8;
    height: auto;
    margin: 0 auto;
}

.block {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index:1;
  position:relative;
  margin-top:60px;
  width:100%;
  height:400px;
}

.content {
    position:relative;
    text-align: left;
    padding: 10px;
    margin:5px;
    color: #000;
    background:transparent;
    font-size: 18px;
    font-family: 'Pavanam', sans-serif;
    letter-spacing:0.5px;
}

navside {
    list-style-type:none;
    width:170px;
}

navside ul {
    width:170px;
}

navside li {
    width:170px;
    font-size: 15px;
    display:block;
    margin: 3px 10px;
    background: #b2cae1;
    padding:3px;
}

navside li a:link {
    list-style-type:none;
    text-decoration:none;
    color:#000;
}

navside li a:visited {
    list-style-type:none;
    text-decoration:none;
    color:#000;
}

navside li a:hover {
    color:#454545;
}

nav {
    position: fixed;
    background: #fff;
    opacity: 0.7;
    z-index: 10;
    height: 60px;
    width:100%;
    top:0;
    font-family: 'Pavanam', sans-serif;
}

nav ul {
	text-align: center;
	font-size: 20px;
	margin: 0;
}

nav li {
    display: inline-block;
    margin: 0 10px;
    padding: 20px 10px;
    opacity: 0.7;
}
 
h2 {
    text-align:left;
    position:relative;
    color: #000;
    padding: 10px 10px 0 10px;
    margin: 5px;
    font-size: 50px;
    width: 40%;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: 100;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */  
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
    background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}