Level Goal
The password for the next level is stored in the file data.txt, which contains base64 encoded data
If we cat the file we get a mess of characters.
Luckily we know that this is just base64 encoded data.
The command base64 will allow us to encode/decode data.
The -d flag will be what we use to decode this file.
