@charset "utf-8";
/* CSS Document */

body {
    background-image: url("../images/BG.jpg");
    background-color: #cccccc; /* Used if the image is unavailable */
    background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}
.container {
    background-color: rgba(255,255,255,0.9);
    margin-top: 50px;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
}
.navbar-nav {
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
}

.card {
    min-height: 200px;
}

@media only screen and (max-width: 767px) {
    .card {
            min-height: 300px;
        }
}
@media only screen and (max-width: 575px) {
    .card {
            min-height: 200px;
        }
}


.card-footer {
    background-color: #ffffff;
}

.btn-primary {
    color: #fff;
    background-color: #999999;
    border-color: #999999;
}

.btn-primary:hover {
    color: #999999;
    background-color: #fff;
    border-color: #999999;
}