body{
    padding: 0;
    margin: 50px;
    background-color: #28282b;
    /* background-blend-mode: color-dodge; */
    /* background-image: linear-gradient(to right, #E8F4FA, #e8f3fb); */
    background-size: cover;
   color:white;
    font-family: Arial, sans-serif;
}

html{
  overflow-x: hidden;
}

form{
    
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    font-weight: bold;
    gap: 1rem;
    margin: 0 auto;
    max-width: 600px;
}

#donation{
    display: grid;
    margin-left: 0.5rem;
    width: 100%;
    padding: 0.5rem;
    border-radius: 5px;
    border: 0px solid #ccc;
    font-size: 1rem;
    font-family: Arial, sans-serif;


}
input{
    padding: 0.5rem;
    border-radius: 5px;
    border: 0px solid #ccc;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    font-weight: bold;  
    background-color: white;
    width:20vw;
   
}

textarea{
    padding: 0.5rem;
    border-radius: 15px;
    border: 0px solid #ccc;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    font-weight: bold; 
    background-color: white;
    width : 20vw;
    height: 10vh; 
}

select{
    padding: 0.5rem;
    border-radius: 15px;
    border: 0px solid #ccc;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    font-weight: bold;  
    background-color:white;
    width : 20vw;
}
button{
    padding: 0.5rem;
    border-radius: 15px;
    border: 0px solid #ccc;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    font-weight: bold;  
    background-color:#0d0e0e;
    color: white;
    cursor: pointer;
    width :20vw;
}

#donation-form{
    /* background-color: #E8F4FA; */
    
    /* background-image: linear-gradient(to left, rgb(216, 159, 200), rgb(129, 133, 183)); */
    display: flex;
    flex-direction: column;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
    max-width: 600px;
    padding: 1rem;
    background-color: #d8d8d8;
    color: black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);   
}
.navbar {
    background-color: #ffffff;
    color: #000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    height: 12vh;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    font-weight: bold;
  }
  
  .sub-title {
    font-weight: 300;
    margin-left: 5px;
  }
  
  .navbar-links {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 50px;
  }
  
  .navbar a {
    display: flex;
    align-items: center;
    gap: 50px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .navbar a:hover {
    color: #007bff;
  }
  
  .navbar-icon{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .navbar-icon:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
  }