

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* Header styles */
.banner {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(73, 68, 68, 0.116), #4d444460), url(iStock2.jpg);
    background-size: cover;
    background-position: center;
}
header img {
    height: 150px;
    width: 180px;
    padding: 10px;
 }
 header .container {
    display: flex;
    align-items: center; /* Vertically center the content */
}
.nav {
    width: 85%;
    margin: auto;
    padding: 0px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.logo {
    width: 120px;
    cursor: pointer;
}

.nav ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.nav ul li a {
    text-decoration: none;
    color: #e76e0b;
    text-transform: uppercase;
}





/* Reset CSS */
.content {
    width: 100%;
    text-align: center;
    color: #e76e0b;
    margin-top: 10vh; /* Adjust margin-top to provide space between the header and content */
    position: relative; 
    
}


.content h1 {
    font-size: 70px;
    margin-top: 80px;
}

.content p {
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}

.Mcolor {
    color: #4da0f3a6;
}

button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #e76e0b;
    background: transparent;
    color: #e76e0b;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

span {
    background: #24242460;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}

button:hover span {
    width: 100%;
}

button:hover {
    border: none;
}

.verseC {
    color: #e76e0b;
}

footer {
    position: relative; 
    text-align: center;
    padding: 1em 0;
    background-color: #333;
    color: #fff;
}

.donate-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 10px;
    
}

.donate-button:hover {
    background-color: #45a049;
    
}
/* Add a more specific selector */
.nav ul li a.donate-button {
    color: white;
}

@media screen and (max-width: 768px) {
    .banner {
        padding: 10px;
    }

    header {
        padding: 0.5em 0;
    }
}

