
body {
  font-family: Arial, Helvetica, sans-serif;
}

/*nav bar begins here*/

nav{
    height: auto;
    padding: 1em;   
    background-color: #033d75;  
    }

        
#logo{
    color: #4dc31e;
    font-family: 'Sofia';
    font-size: 22px;
    text-decoration: none;     
    }
        
nav ul {
    list-style-type: none;
    padding: 0;
    float: right;
    width:30%;
            
    }

nav ul li {
    display: inline-block;
    }

nav ul li a {
            
    color: white;
    text-align: center;
    padding: 6px 8px;
    text-decoration: none;
    }

.navbar {
  background-color: #333;
  height: 47px; 
  
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #e97d7d;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/*navbar ends here*/




h1 {
  color: #e97d7d;
}

.container{
  width:100%;
  padding:2px;
  margin:2px;
}

/* for all tables*/
table{
  width:100%;
  padding: 20px;
}

.fa{
  color:#e97d7d;

}

/*contact page*/
.inputText {
  width:50%; 
  height: 25px;
}

.inputMessage {
  width:50%;
}

/*For All buttons*/

button{
  background-color: #e97d7d;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}


footer {
    left: 0;
    bottom: 0;
    width: 100%;
    height:30px;
    background-color: #033d75;
    color: white;
    text-align: center;
    padding: 5px;
  }

  