html {
    /* Credit: https://uigradients.com/#RedSunset */
    background: #355c7d; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #355c7d, #6c5b7b, #c06c84); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #355c7d, #6c5b7b, #c06c84); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-repeat: repeat;
    background-attachment: fixed;
}

.text-shadow-none {
    text-shadow: none;
}

.transition-a-fast {
    transition: all 100ms;
}

.hover\:scale-a-md:hover {
    transform: scale(1.02);
}

.focus\:scale-a-md:focus {
    transform: scale(1.02);
}

.hover\:scale-a-lg:hover {
    transform: scale(1.1);
}

.focus\:scale-a-lg:focus {
    transform: scale(1.1);
}
