.welcome {
    padding: 50px 20px;
    text-align: center;
}
.welcome-text h2 {
    font-size: 2rem;
    font-weight: bold;
    color:green;
}
.welcome-text p {
    text-align: justify;
    font-size: 1rem;
    color: #555;
}
.welcome-images img {
    width: 100%;
    border-radius: 10px;
}
.welcome-buttons .btn {
    margin-right: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}
.donate-btn {
    background-color: #ff5722;
    color: white;
}
.join-btn {
    background-color: #4caf50;
    color: white;
}
.birdimg img {
    width: 90%;
    border-radius: 10px;
}

/* Small screens adjustments */
@media (max-width: 768px) {
    .welcome-text {
        text-align: center; /* Center-align text for smaller screens */
        margin-bottom: 20px;
    }

    .welcome-images {
        gap: 10px;
        /* margin-left: 20.5%; */
    }

}

@media (min-width: 998px) {
    .welcome-text {
        text-align: left;
    }
    .birdimg img {
        width: 80%;
        height: 80%;
    }
}