body {
    font-family: 'Source Sans Pro', arial, sans-serif;
    background-color: white;
    margin: 0px;
}

.navbar {
    background-color: #808080;
    color: white;
    display: flex;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    z-index: 1000;
}

.logo {
    max-height: 64px;
    margin-left: 10px;
    z-index: 2
}

.menu {
    display: flex;
    gap: 20px;
    padding-right: 50px;
}

.menu a {
    padding-top: 5px;
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.menu a:hover {
    color: #00bcd4;
}

.donate-button {
    background-color: #FE8100;
    color: white;
    font-size: 1em;
    border-color: #FE8100;
    border-radius: 12px;
    padding: 4px;
}

.hamburger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    padding-right: 50px;
}

.body-content {
    place-items: center;
    background-color: #001243;
    padding-top: 106px;
}

.heading-text {
    font-size: 26px;
    font-weight: bold;
    color: #FE8100;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    margin-top: 44px;
    text-align: center;
    padding: 20px;
    margin: 20px;
}

.subheading-text {
    font-size: 20px;
    font-weight: bold;
    color: #CCCCCC;
    display: block;
    margin-top: 20px;
    text-align: center;
    padding: 20px;
    margin: 20px;
}

.footer {
    background-color: #808080;
    color: white;
    text-align: center;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
}

@media screen and (max-width: 945px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #808080;
        position: absolute;
        top: 60px;
        right: 20px;
        border: 1px solid #444;
        padding: 10px;
        width: 150px;
    }

    .menu a {
        padding-top: 5px;
    }

    .menu.show {
        display: flex;
        text-align: center;
        padding-right: 50px;
    }

    .hamburger {
        display: block;
    }
}