/* GENERAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #000 url('floweroflife.png') center/cover fixed no-repeat;
    color: white;
}

/* HEADER BAR */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 15px 20px;
    border-bottom: 2px solid #333;
}

/* TABS */
.tabs {
    display: flex;
    gap: 25px;
}

.tabs a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 6px 10px;
}

.tabs a:hover {
    background: #333;
    border-radius: 8px;
}

/* DONATION BUTTONS */
.donation-buttons {
    display: flex;
    gap: 12px;
}

.donation-icon {
    height: 40px;
    cursor: pointer;
}


/* MAIN LOGO */
.main-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.main-logo {
    width: 420px;   /* increase or shrink here */
    max-width: 90%;
}
