html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.adminTiles a {
    color: darkorange !important;
}
.adminTiles .card {
    color: inherit; 
}

.adminTiles .card-body {
    color: inherit;
}
    #logo:hover {
    opacity: 50%;
    transition: filter 0.3s ease;
}
.img-fluid {
    max-height: 70px !important;
}
.icon-large {
    font-size: 5rem;
    display: block;
    margin: 0 auto 1rem auto;
}

.icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.logo-text {
    text-align: center;
    font-size: 1.7em;
    color: #000;
    /*letter-spacing: -7px;*/
    font-weight: 700;
    text-transform: uppercase;
    animation: blur 1.5s ease-in-out infinite;
    text-shadow: 0px 0px 0px #fff, 0px 0px 0px #fff;
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes blur {
    from {
        text-shadow: 
            0px 0px 2px darkorange,
            0px 0px 2px darkorange,
            0px 0px 2px darkorange,
            0px 0px 2px darkorange;
    }
}