@font-face {
  font-family: Lato;
  src: url(/fonts/lato-regular.ttf);
  font-weight:normal;
}

@font-face {
    font-family: Lato;
    src: url(/fonts/lato-thin.ttf);
    font-weight:100;
}

@font-face {
    font-family: Lato;
    src: url(/fonts/lato-bold.ttf);
    font-weight:bold;
}

@font-face {
    font-family: Lato;
    src: url(/fonts/lato-black.ttf);
    font-weight:900;
}

@font-face{
    font-family: Lato;
    src: url(/fonts/lato-italic.ttf);
    font-style:italic;
}

.header {
  padding: 5px; 
  text-align: center; /* center the text */
  background: #07232E; 
  color: white; 
  font-family: Lato, Helvetica, Arial;
}

/* Increase the font size of the <h1> element */
.header h1 {
  font-size: 40px;
  font-family: Lato, Helvetica, Arial;
}
/* Style the top navigation bar */
.navbar {
  overflow: hidden; /* Hide overflow */
  background-color: #07232e; /* Dark background color */
  list-style:none;
  text-align:center;
}

.navbar li {
    display: inline;
}

/* Style the navigation bar links */
.navbar a {
 /* float: left; /* Make sure that the links stay side-by-side */
  display: inline-block; /* Change the display to block, for responsive reasons (see below) */
  color: #ddddee; /* White text color */
  text-align: center; /* Center the text */
  padding: 5px 20px; /* Add some padding */
  text-decoration: none; /* Remove underline */
  
}

/* Change color on hover/mouse-over */
.navbar a:hover {
  color: #eeeeff;
}

.home {
  max-width: 100%;
  margin: auto;
  display: block;
  padding: 20px;
  width: 100%;
  flex:100%;
  background-color: #07232e;
  color:#ffffff;
}


.single {
  max-width: 900px;
  margin: auto;
  display: block;
  padding: 20px;
  width: 100%;
  flex:100%;
  background-color: #07232e;
  color:#ffffff;
}

.single h1 {
    padding-left:30px;
    padding-right:15px;
}

.single p {
    font-family: Lato, Helvetica, Arial;
    padding-left:15px;
    padding-right:15px;
    margin-left:15px;
    color:#ffffff;
}

.single a {
    color:#d1eeff;
}


/* Ensure proper sizing */
* {
  box-sizing: border-box;

}

/* Column container */
.row {
  display: flex;
  flex-wrap: wrap;
}


/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 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: #238be1;
  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: #207cc9;
}

/* Add a background color and some padding around the form */
.container {
    display:flex;
    width:70%;
    margin-left:auto;
    margin-right:auto;
  border-radius: 5px;
  background-color: #266388;
  padding: 20px;
} 


body {
  font-family: Lato, Helvetica, Arial, sans-serif;
  background-color: #0a4080;
  margin: 0;
}
.h1 {
    font-family: Helvetica, Arial;
}

.p {
    font-family: Lato, Helvetica, Arial;
    font-weight: bold;
    padding-left:15px;
    padding-right:15px;
    margin-left:15px;
    color:#ffaaff;
}


.footer {
    width:100%;
  padding: 3px; /* Some padding */
  text-align: center; /* Center text*/
  background: #151f23; /* Grey background */
  color:#ffffff;
  margin-bottom:0px;
  vertical-align: bottom;
  
}

.footer img {
    padding: 2px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

