body{
    background-color: #EEE;
    height: 100vh;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
div.animated, .fab.animated svg {
    transition: all 0.1s;
    animation: fadeInAnimation ease 0.5s;
}
div.animated.fade-out, .fab.animated.fade-out svg {
    opacity: 0;
}
.center {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-header {
    z-index: 2;
    position: relative;
    background-color: #0004;
    backdrop-filter: blur(7px);
    color: #FFF;
}
.card {
    transition-duration: 0.2s;
    overflow: hidden;
    height: 100%;
}
.card:hover {
    box-shadow: 0px 0px 25px #0006;
}
.card img {
    object-fit: cover;
    height: 100%;
    transform: scale(1.3);
    transition-duration: 0.4s;
}
.card:hover img{
    transform: scale(1.5);
}
.fab{
    position: fixed;
    padding: 16px;
    background-color: #0027;
    backdrop-filter: blur(3px) brightness(1);
    border-radius: 50%;
    color: #FFF;
    z-index: 3;
    transition-duration: 0.2s;
    box-shadow: 0px 0px 10px #0004;
    overflow: hidden;
    bottom: 10px;
    cursor: pointer;
}
@media screen and (min-width: 768px) {
    .fab {
        top:10px;
        bottom:auto;
    }
}
.fab:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 15px #0008;
}
.fab-logout, .fab-return {
    left: 10px;
}
.fab-admin-panel {
    right: 10px;
    background-color: #1b8335AA;
}
.fab-admin-panel:hover {
    rotate: 90deg;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        translate: -20%;
    }
    100% {
        opacity: 1;
        translate: 0;
     }
}