* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 }
 body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #e0dedea8;
  
 }
 a {
  text-decoration: none;
 }
 li {
  list-style: none;
 }

 /* NAVBAR STYLING STARTS */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  /* position: fixed;
  width: 100%; */
  background-color: #33ACFF;
  color: #fff;
 }

 .donate {
     background-color: #200303a8;
     padding: 7px;
     border-radius: 3px;
 }

 .nav-links a {
  color: #fff;
 }
 /* LOGO */
 .logo {
  font-size: 32px;
 }
 /* NAVBAR MENU */
 .menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
 }
 .menu li:hover {
  background-color: #7C9B7E;
  border-radius: 5px;
  transition: 0.3s ease;
 }
 .menu li {
  padding: 5px 14px;
 }
 /* DROPDOWN MENU */
 .services {
  position: relative; 
 }
 .dropdown {
  background-color: #7C9B7E;
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 35px;
 }
 .dropdown li + li {
  margin-top: 10px;
 }
 .dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
 }
 .dropdown li:hover {
  background-color: #4c9e9e;
 }
 .services:hover .dropdown {
  display: block;
 }
 

 /*RESPONSIVE NAVBAR MENU STARTS*/
/* CHECKBOX HACK */
input[type=checkbox]{
  display: none;
 } 
 /*HAMBURGER MENU*/
 .hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
 }
 /* APPLYING MEDIA QUERIES */
 @media (max-width: 768px) {
 .menu { 
  display:none;
  position: absolute;
  background-color:teal;
  right: 0;
  left: 0;
  text-align: center;
  padding: 16px 0;
 }
 .menu li:hover {
  display: inline-block;
  background-color:#4c9e9e;
  transition: 0.3s ease;
 }
 .menu li + li {
  margin-top: 12px;
 }
 input[type=checkbox]:checked ~ .menu{
  display: block;
 }
 .hamburger {
  display: block;
 }
 .dropdown {
  left: 50%;
  top: 30px;
  transform: translateX(35%);
 }
 .dropdown li:hover {
  background-color: #4c9e9e;
 }
 }






.navbar {
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: gold;
    font-family: Arial;
  }
  body{
    background-color: #e0dedea8;
     
  }
  
  /* Links inside the navbar */
  .navbar a {
    float: left;
    font-size: 16px;
    color: rgb(0, 0, 0);
    /* color: rgb(0, 0, 0); */
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }      
.about-h1 h1{
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000a8;
    text-align: center;
}

.contents{
    margin-left: 50px;
 }

.about-info img{
    float: left;
    margin-left: 80px;
}
 
  .contents img{
    float: left;
    border-radius: right 10px;
    height: auto;
    width: 50%;
  }
  
 .mission-text p{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;  
     margin-right: 50px;
     margin-left: 50px;
     padding: 10px;
    font-size: 25px;
    color: #000000;
    text-transform: none;
      }

    @media only screen and (max-width: 600px) {
      .mission-text p{
         font-size: 15px;
        width: 100%;
        margin-left: 0px;
      }
    }

    @media only screen and (max-width: 600px) {
      .about-h1 h1{
         font-size: 20px;
       }
    }

    @media only screen and (max-width: 600px) {
      .contents img{
        width: 100%;
         height: 100%;
      }
    }
    
    @media only screen and (max-width: 600px) {
      .contents {
         margin-right: 20px;
         margin-left: 20px;
       }
    }
    
    