﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, Tahoma, Arial, sans-serif;
    background-color: #161616;
    color: #aaa;
    text-align: center;
}

strong {
    color: #eee;
    font-size: 1.2em;
}

* {
    user-select: none;
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
}

::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}

a#DownloadNow {
    color: #b69d57;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    width: 350px;
    max-width: 100%;
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
}

    a#DownloadNow:hover {
        color: #ceb46b;
        background-color: #272727;
        text-decoration: underline;
    }

    a#DownloadNow img {
        width: 24px;
        flex: 1;
    }

    a#DownloadNow span#TrackTitle {
        flex: 6;
        text-align: left;
        margin-left: 20px;
    }