@charset "utf-8";
/* CSS Document */
* {box-sizing:border-box}
/* The navigation bar */
.navbar 
    /* Navigation */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    }
    li {
    display:inline;
    }

    li {
        float: center;
    }
li a {
color:#d7e4c2;
padding: 20px;
background-color:rgba(2,75,55,0.81);
align-items:center;
display:inline;
float: center;
}
li a:hover:not(.active) {
    background-color:antiquewhite;
}
.active {
    background-color:rgba(2,75,55,0.81);
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display:inline;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

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

/* Main content */
.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
}
/* 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: #ec9b3b;
  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: #BB5E16;
}
/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align:center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}
/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: rgba(16,65,2,0.50);
  padding: 20px;
}
