
.container-1{
    position: relative;
    width: 100%;
    height: 40px; /* Adjust height as needed */
   /* background-image: url('background.jpg'); *//* Replace 'background.jpg' with your background image path */
   /*background-color: linen;*/
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding-top: 10px; /* Adjust top padding as needed */
  }
  #btn-donate:hover{
  	position: relative;
  	background-color: #e9ecef;
    border: 1px solid #2C8CF4;
  	border-width: 2px;
  	border-radius: 4px;
  	box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.25) !important;
  	color: green;
  	font-size: 23px;
  	font-style: bold;
  	transform: translate(0%, -20%);
  	cursor: pointer;
  	font-family: serif;


  }

  
  /*.donate-button-1{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4AD295; 
    color: white;
    padding: 5px 10px;
    font-size: 23px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }*/
 /* .description-1 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
  }*/
  .modal-1{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }
  .modal-content-1 {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    position: relative;
  }
  .close-1{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background:none;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: aquamarine;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    color: chartreuse;
}

.dropdown:hover .dropdown-content {
    display: block;
}
  .dropdown-btn {
    display: block;
    color: rgb(22, 10, 10);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}