@import url(https://fonts.googleapis.com/css?family=Libre+Baskerville);



html {/*html minimum width*/
    min-width: 1000px;
}

body {/*body css settings*/
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: PT Sans Caption, sans serif;
}


header img {/*stlye for the logo*/
    padding: 60px 0 20px 0;
    position: relative;
}

nav {/*css style for the background of the header navigation*/
    background-color: #026274;
    height: 70px;
}

.nav1 {/*style for the footer menu*/
    height: 50px;
}

nav ul {/*padding for the navigation links*/
    padding: 25px;

}

nav ul li {/*style for the ul/li navigation*/
    display: inline-block;
    list-style-type: none;
}

nav li a {/*style for the li/a*/
    text-decoration: none;
    padding-left: 20px;
    margin: 20px;
}

.text{/*style for the text under the figures and figcaption*/
    clear: both;
    font-size: 1em;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    padding: 7px;
    width: 65%;
    background-color: #ca0036;
    border-radius: 10px 10px 10px 10px;
    width: 840px;
}

.orange{/*style for header for the text under the figures and figcaption*/
    color: #ee9600;
    font-weight: bold;
}
nav a {
    color: #ffffff;
    padding: 13px;
    margin: 10px;
}

.links {
    color: #2e5809;
    font-weight: bold;    
}

nav a:active {/*style for active links*/
    color: #ee9700;
}

nav a:visited {/*style for visited links*/
    color: #a7a6a6;
}

nav a:hover {/*style for hover links*/
    color: #ca0036;
}

main {/*style for main section of page*/
    padding-top: 50px;
    width: 100%;
}

.images {/*style for images*/
    text-align: center;
}

figure {/*style for figure*/
    margin: 0;
}

.images figure {/*style for images figure*/
    display: inline-block;
    margin: 20px;
}

.images figure img {/*style for images figure img*/
    border-radius: 10px 10px 10px 10px;
    border: 4px solid #ffffff;
    display: block;
    text-align: left
}

figcaption {/*style for the figcaption*/
    width: 240px;
    text-align: left;
    color: #000000;
    border-radius: 0 0 5px 5px;
    padding: 5px;
}

.text quotes {/*style for the quote*/
    display: block;
    margin: 20px;
}
h3 {/*style for the h3 texts*/
    color: #026274
}

blockquote {/*style for the blockquote*/
    clear: both;
    font-size: 1.6em;
    color: #000000;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    width: 65%;
    background-color: #ffdb9c;
    border-radius: 10px 10px 10px 10px;
    width: 700px;
}

form {/*width size for the whole form*/ 
    max-width:600px; margin:20px auto; 
}

.feedback-input {/*style for the feedback input*/ 
  color: #026274;
  font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #026274;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #026274; }

textarea {/* style for the textarea */
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {/* style for the submit */
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  background:#026274;
  border-radius:5px;
  border:0;
  color:white;
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover { background:#ca0036; }

footer {/*style for the footer*/
    background-color: #026274;
    color: #ffffff;
    border-top: 4px solid #000000;
    font-family: sans-serif;
    text-align: center;
    padding: 5px;
}


