/* Center Banner Header*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}


body {
    min-height: 50vh;
    padding: 5px;
    margin-top: 150px;
    background-color: #ffffff;
    font-size: 20px;
    color: #000000;
    background-image: url("FinalLogoOpaque.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    font-family: Arial;
    }
* {box-sizing: border-box;}

p {
  padding: 5px;
}

table {
  border:0px solid lightgrey;
  width: 75%;
}

td {
  vertical-align: top;
}

/* link style settings */
a:link {
  color: #00A9B4;
  background-color: transparent;
  text-decoration: none;
  font-weight: bold; }


a:visited {
  color: #00A9B4;
  background-color: transparent;
  text-decoration: none;}
a:hover {
  color: #00A9B4;
  background-color: #ddd;
  border-radius: 5px;
  text-decoration: underline;
  font-weight: bold; }
a:active {
  color: #00A9B4;
  background-color: transparent;
  text-decoration: underline;}
/* end link style settings */


/* input style settings */
input[type=text], input[type=email], select, textarea, phone, email, tel {
  width: 300px;
  padding: 6px;
  border: 1 solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 2px;
  margin-bottom: 10px;
  resize: vertical;
}

input[type=submit] {
  background-color: #00A9B4;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: grey;
}
/* input style settings */


.container {
  border-radius: 5px;
  background-color: #ffffff;
  padding: 20px;
}
/* End input style settings */


/* error style setting */
.error {color: #FF0000;}


/* scrollbar style settings */
/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #00A9B4;
  border-radius: 10px;
}


/*paragraph indent*/
  .indent {
    text-indent: 50px;
  }
  
  /* Navigation bar settings*/
.navbar {
  overflow: hidden;
  background-color: transparent;
  position: fixed; /* Set the navbar to fixed position */
  top: 10px;
  left: 0;/* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  text-align:center;
}

#nav ul {
    margin: 0;
    padding: 0;
    display: inline-block;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: #00A9B4;
  text-align: center;
  padding: 0px 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  border-radius: 5px;
  color: #00A9B4;
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
    padding: 0px 12px;
    text-decoration: none;
  font-weight: bold;
  

}
  /* End Navigation bar settings*/


div.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
