﻿#sticker {
    position: fixed;
    top: 400px;
    width: 276px;
    height: 50px;
    background: url('/images/sticker.png');
    transition: background-image 0.2s ease-in-out;
    z-index: 1000;
}

#sticker:hover {
    background: url('/images/sticker-hover.png');
    transition: background-image 0.2s ease-in-out;
}

#sticker a {
    display: inline-block;
    padding-left: 36px;
    padding-top: 20px;
    text-decoration: none;
    color: black;
    font-size: 12px; 
    font-weight: 900; 
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}
