/*
 * Copyright (c) 2018. by Kevin Kraus
 */

nav {
    margin-bottom: 20px;
}
body {
    padding-top: 50px;
}
.jumbotron{
    background: radial-gradient(circle,#ffffff,#7d2a99)!important;
}
.row-center {
    display: flex;
    align-items: center;
}
.animation-shake{
    -webkit-animation: shake 1.14s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation: shake 1.14s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}