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;
}
##Style the download link Try adding some padding, remove the default link underline and change the colour. Your page will look similar to [Example 11](project/examples/11-fixed.html) with the final code looking something like this: ```css .download { position: fixed; top: 0; right: 0; display: inline-block; background: #2980b9; padding: 18px; text-decoration: none; /* removes underline */ color: #fff; } ```