@charset "UTF-8";
/* CSS Document */

  /* <weight>: Use a value from 300 to 700
  // <uniquifier>: Use a unique and descriptive class name*/

.quicksand {
    font-family: 'Quicksand', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
  }	
body {
	background-color: #f1f1f1;
	font-family: 'Quicksand', sans-serif;
    font-optical-sizing: auto;
}
.mainWrap {
	background-color: #ffffff;
	margin: 0% auto 3% auto;
	display: block;
	max-width: 600px;
	min-width: 300px;
  }
.bgIMGcontainer {
	background-color: #ffffff;
	background-image: url('images/crown.png');
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
}
.imageShrink {
	max-width: 45%;
	height: auto;
	margin: 0% auto;
	display: block;
}
p {
	font-weight: 300;
	font-style: normal;
	font-size: .9em;
	margin: 2% 0%;
	line-height: 1.4em;
}
p .last {
	margin-bottom: 0%;
}
h2 {
	font-size: 1.1em;
	margin: 0%;
}
.navBar {
	background-color: #C42427;
	width: 100%;
}
.nav {
	list-style-type: none; /* Removes bullet points */
    margin: auto;             /* Removes default margin */
    padding: 0;            /* Removes default padding */
    overflow: hidden;      /* Contains floats if used for horizontal layout */
	max-width: 500px;
}
.nav li {
	float: left;
	margin: 1%;
	padding: 1%;
	font-size: 1em;
	width: 19%;
	font-weight: 300;
}
.nav li a {
	display: block;        /* Makes the whole link area clickable */
    text-align: center;    /* Centers text horizontally */
    padding: 1.5% 2%;    /* Adds space inside the links */
    text-decoration: none; /* Removes underlines from links */
	color: #ffffff;
}
li a:hover {
    font-weight: bold;
    text-decoration-style: dotted;
}
.logoContainer {
	margin: 10% 0% 2% 0%;
	background-color: rgba(255, 255, 255, 0.5);
}
.mainMessage {
	margin: 5%;
}
#contactForm {
	margin-top: 5%;
}
label {
   	display: block;
    margin-bottom: 0.5%;
    text-align: left;
	font-optical-sizing: auto;
  	font-style: normal;
  	font-variation-settings: "slnt" 0;
	font-size: 0.9em;
}
input, textarea {
	display: inline-block;
    width: 100%;
    padding: 1%;
	margin-bottom: 2%;
	background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 1%;
    font-size: .9em;
	resize: vertical;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
		}

.button {
	color: #ffffff;
	background-color: #C42427;
	padding: 2%;
}






@media screen and (max-width: 400px) {
.imageShrink {
	max-width: 75%;
	}}