Position and style download link
Use fixed positioning for the link to make it always available as the user is scrolling down the page.
.download {
position: fixed;
top: 0;
right: 0;
}
a
tags are inline elements by default so to apply padding or other sizing styles to it, change its display value to inline-block
.
.download {
position: fixed;
top: 0;
right: 0;
display: inline-block;
}