body {
    /* display: flex; */
    /* flex-direction: column; */
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    font-size: 20px;
}

h1 {
  text-align: center;
  margin: 0px auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.logo {
    height: 30px;
    margin: 15px 30px;
   
   
}
section {
    width: 700px;
    background-color: #fff;
    align-items: center;
    margin: auto;
    margin-bottom: 100px;
    
    /* display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap; */
    
     
}

footer{
  width: 100%;
    background-color: #fff;
}



.hero-image2 {
  
    /* height: 800px; */
    width: 1000px;
    margin: auto;
    display: block;
    
}




a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: orangered;
    /* font-size: 25px; */
}

a:active {
    color: purple;
}



.navbar {
    overflow: hidden;
    background-color:  #2c0ea1;
  }
  
  /* Navigation links */
  .navbar a {
    float: left;
    font-size: 20px;
    color: white;
    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: white;
    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);
    
  }
  
  /* 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;
  }


