*{
    margin:0; 
    padding:0;
    box-sizing:border-box;
    font-family: sans-serif;
  }
  header
  {
     width:100%;
     height:100vh;
     background-image: url('donate.jpg');
     background-repeat: no-repeat;
     background-size:cover;
  }
  nav
  {
     width:100%; height:15vh;
     background  :  rgba(0,0,0,0.2 );
     color:aqua;
       display:flex;
       justify-content:space-between;
       align-items: center;
        text-transform:uppercase;
  }
  nav .logo
  {
     width:25% ;
     text-align:center;
    
  
  }
  nav .menu
  {
    width:40%;
    
    display:flex; 
     justify-content: space-between ;
  }
  nav .menu a
  {
       width:40%;
       text-decoration:none;
       color:black; 
       font-weight:bold; 
  }
  .menu a:hover{
      color:red;
  }
  main{
    width:100%; 
    height:85vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align: center;
    color:rgb(6, 32, 6);
  }
  section h4
  {
    padding-bottom: 20px;
    font-size:30px; font-weight:bold ;
    letter-spacing: 1px;
    
  }
  h1{
    color:blueviolet;
  }
  
  section p
  {
     padding-top: 15px;
     padding-bottom: 10px;
     font-size: 35px;
      word-spacing:2px;
      margin-bottom:25px;
      text-shadow:1px 1px 1px black;
  }
  section a
  {
    padding:12px 30px;
    border-radius:4px;
    outline:none;
    text-transform:uppercase;
    font-size:13px;
    font-weight:500;
    text-decoration:none;
    letter-spacing: 1px;
  }
  
  nav.menu a:first-child
  {
    color:#d8db23;
  }