body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    width: 100%;
    height: 60vh;
    background: url('../../assets/images/wayanad.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

main {
    /*padding: 2rem;*/
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
}

.campaign .tile {
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    text-align: center;
}

.campaign h2 {
    margin: 0 0 1rem;
    font-size: 2rem;
}

.donate-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.donate-btn:hover {
    background-color: #218838;
}
