body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    margin-top: 80px;
    /* color: #ebd5a8; */
}




.logo{
    
    width: 50%;
   
    height: 600px;
    margin: 10px;
    
}

.commitments{
    max-width: 700px;
    margin: 30px;
    font-size: 20px;
}



@media only screen and (max-width: 900px) {
   
    .logo {
        
        visibility: hidden;
        height: 0px;
          
    }

    
}







.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;
  }





