@font-face {
    font-family: 'stamp';
    src: url(vsfont.woff) format('woff');
}

#navigation {
  float: center;
  width: 100%;
  height: 144px;
  position: fixed;
  z-index: 3
}


html { 
  background-color: #51738E;
}

body { 
color: white;
text-shadow: 2px 2px 4px #000000;
}

img.oval {
  border-radius: 30%;
}

img.rounded {
  border-radius: 30px;
}

img.circle {
  border-radius: 50%;
}

img.shadow {
  box-shadow: 2px 5px 5px #171717;
}


/*fonts*/
navtext {
  font-family: stamp;
  font-size: 18px;
  color: white;
  text-shadow: 2px 2px 4px #000000;
}

header {
  font-family: kepler;
  font-size: 60px;
  color: white;
  text-shadow: 2px 2px 4px #000000;
}

h1w {
  font-family: kepler;
  font-size: 40px;
  color: white;
  text-shadow: 2px 2px 4px #000000;
}

h2w {
  font-family: kepler;
  font-size: 25px;
  color: white;
  text-shadow: 2px 2px 4px #000000;
}

h3w {
  font-family: kepler;
  font-size: 18px;
  color: white;
  text-shadow: 2px 2px 4px #000000;
}

h1 {
  font-family: kepler;
  font-size: 40px;
  color: black;
  text-shadow: 2px 2px 4px #c2c5cc;
}

h2 {
  font-family: kepler;
  font-size: 25px;
  color: black;
  text-shadow: 2px 2px 4px #c2c5cc;
}

h3 {
  font-family: kepler;
  font-size: 18px;
  color: black;
  text-shadow: 2px 2px 4px #c2c5cc;
}

	.tcopyright {font:normal 9px "Times New Roman", serif}
	.tsmall {font:normal 11px "Times New Roman", serif}
	.tmedium {font:normal 13px "Times New Roman", serif}
	.tlarge {font:normal 16px "Times New Roman", serif}
	.tbold{font:normal 18px "Times New Roman", serif}
	.ttitle{font:normal 32px "Times New Roman", serif}
	
	.tsmall_l {font:normal 11px "Times New Roman", serif; text-align: left}
	.tmedium_l {font:normal 13px "Times New Roman", serif; text-align: left}
	.tlarge_l {font:normal 16px "Times New Roman", serif; text-align: left}

/*End fonts*/


/*Divisions*/
div#home {
	height: 100vh;
	background-image: url('/img/flagback.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 
div#about {

	background-image: url('/img/thback.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

div#services {
	background-image: url('/img/thback.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 
div#contact {
	height: 100vh;
	background-image: url('/img/thback.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

div#ftop {

	background-image: url('/img/flagback.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

div#gblue {
	background: rgb(81,115,142);
	background: linear-gradient(180deg, rgba(81,115,142,1) 25%, rgba(4,30,66,1) 100%); 
}


/*End Divisions*/



/*Links*/
a:link {color: White;
text-decoration: none;
}
a:visited {color: Gray;
text-decoration: none;
}
a:hover {
text-decoration: bold;
}
/*Links end */



	
 /* Navbar start */

 /* Navbar container */
.navbar {
  display: flex;
  list-style-type: none; 
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 1px 1px;
  text-decoration: none;
  
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 0px 0px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {

}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0,0,0,0.5);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 3px 3px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgba(0,0,0,0.5);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
} 
 /* Navbar end */
 
 
 /* Form*/
 /* 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] { 
  color: white;
  background-color: rgba(0,0,0,.2);
  border-color: rgba(0,0,0,1);  
  padding: 12px 20px;
  border-radius: 2px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: rgba(0,0,0,.5);
  border-color: rgba(0,0,0,1); 
}

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