html, body {
    background-color: black;
    color: white;
}

.mobile-only {
    display: none;
}

@media screen and (max-width: 991px) {
    .mobile-only {display: block;}
}

.btn-dark {
    background-color: #000000;
}

.fixed-position {
    position: fixed;
    z-index: 900;
}

.logo {
    margin-top: -10px;
    margin-bottom: -10px;
    width: 250;
    height: 66;
}

.nav-link {
    text-align: right;
}

.nav-link:hover {
    color: white !important;
}

.fixed-footer {
    bottom: 20px;
}

.container-body {
    margin-bottom: 40px;
}

/* PULSE ANIMATION */
.pulseAnimation {
    background: #00a2ff;
    animation: fadeColor 2s infinite;
}

@keyframes fadeColor {
    0% {
        fill-opacity: 0.5;
    }
    70%{
        fill-opacity: 0.2;
        stroke: black;
        stroke-width: 2px;
    }
    100% {
        fill-opacity: 0.5;
    }
}
/* END PULSE ANIMATION */