.greenDownload {
    display: inline-block;
    padding: 12px 28px;

    background: linear-gradient(
        to bottom,
        #4caf50 0%,
        #3d9441 100%
    );

    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;

    border: 2px solid #2f6f32;
    border-radius: 12px;

    cursor: pointer;

    box-shadow:
        0 4px 0 #2f6f32,
        0 6px 10px rgba(0,0,0,0.25);

    transition:
        background 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.greenDownload:hover {
    background: linear-gradient(
        to bottom,
        #6fdb73 0%,
        #53b857 100%
    );

    box-shadow:
        0 2px 0 #2f6f32,
        0 4px 8px rgba(0,0,0,0.22);

    transform: translateY(2px);
}

.greenDownload:visited {
    color: white;
}

.greenDownload:active {
    background: linear-gradient(
        to bottom,
        #48a54c 0%,
        #357f38 100%
    );

    box-shadow:
        0 1px 0 #2f6f32,
        0 2px 4px rgba(0,0,0,0.2);

    transform: translateY(4px);
}
