﻿.bg {
    background-color:#fff!important;
    background-image: url("img/bg.jpg"),url("img/bg_low.jpg");
    overflow: hidden!important;
    height: 100%;
    /* Center and scale the image nicely */
    background-position: 50vh 0;
    background-repeat: no-repeat;
    background-size: cover;
    animation: bg-fadein 0.4s;
}

@keyframes bg-fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.simple-card {
  color: #fff;
  background: rgba(22, 22, 22, 0.55);
  padding: 33px;
  margin: 44px;
}

.simple-card a {
  color: #fff;
}

.simple-card a:hover {
  text-decoration: none;
}

.simple-card-title {
  color:#fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 44px;
} 