body, html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Lato", sans-serif;
    background: #111;
    color: #FFF;
}

.bg-img {
    position: relative;
    opacity: 0.65;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/img/bg.jpg");
    height: 100%;
}
a {
    color: #FFF;
}
a:hover {
    color: #FFF;
    text-decoration: none;
}
.no-masquerade {
    color: gray;
    text-decoration: none;
}
li {
    list-style-type: none;
}

/* When 'coming-soon' class is applied */
.card-body.coming-soon {
    opacity: 0.4; /* Wash out entire container */
    pointer-events: none; /* Disable clicks on links */
}

.card-body.coming-soon::after {
    content: "Coming Soon";
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    color: #333;
    font-size: 24px;
    font-weight: bold;
    pointer-events: none; /* Text doesn't block anything further */
}
