body {
    display: flex;
    flex-direction: column;
   
    background-color: #ffffff;
    /* color: #e0e0e0; */
     

}

section{
  background-color: #fff;
  font-size: 25px;
  margin-left: 10px;
  margin-top: 10px;
}

.teamImage {
  
  margin-top: 10px;
  margin-left: 50px;
  
  width: 90%;
 
 
}


.form-group{

    margin: 10px;
    text-align: center;
}


form {
    margin: 0 0 40px 0;
}

footer {
  
    display: flex;
    justify-content: center;
    background-color: #2c0ea1;
    font-size: 30px;
    color: #ffffff;
}  


.input-section {
    margin: 10px 0;
    display: flex;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin: 0 5px 0 0;
}

#first-name{
    height:30px;
    font-size:14pt;
    
}

#last-name{
    height:30px;
    font-size:14pt;
    
}

#email{
    height:30px;
    font-size:14pt;
    
}

#message{
    
    font-size:15pt;
    
}

#submit{
    border: 0;
    padding: 10px 20px;
    font-size: 20px;
    background-color:#bdc8be ;
    width: 120px;
    border-radius: 30px;
    
    text-transform: uppercase;
    
    text-align: center;
    color: #2e2424;
}

#submit:hover{
    background-color: #38da45;
}

#submit:active {
    box-shadow: inset -2px -2px 3px rgba(255,255,255,0.6);
}


.navbar {
    overflow: hidden;
    /* background-color:  #2c0ea1; */
    background-color: #ffffff;
    margin-top: 10px;
  }
  
  /* Navigation links */
  .navbar a {
    float: left;
    font-size: 20px;
    color: #2c0ea1;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* The subnavigation menu */
  .subnav {
    float: left;
    overflow: hidden;
    
  }
  
  /* Subnav button */
  .subnav .subnavbtn {
    font-size: 20px;
    border: none;
    outline: none;
    color: #2c0ea1;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  /* Add a red background color to navigation links on hover */
  .navbar a:hover, .subnav:hover .subnavbtn {
    /* background-color: rgb(32, 136, 38); */
    background-color: #38da45;
    color: black;
  }
  
  /* Style the subnav content - positioned absolute */
  .subnav-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: rgb(32, 136, 38);
    width: 100%;
    z-index: 1;
  }
  
  /* Style the subnav links */
  .subnav-content a {
    float: left;
    color: white;
    text-decoration: none;
  }
  
  /* Add a grey background color on hover */
  .subnav-content a:hover {
    background-color: #eee;
    color: black;
  }
  
  /* When you move the mouse over the subnav container, open the subnav content */
  .subnav:hover .subnav-content {
    display: block;
  }

