body {
    background-image: url("../img/bg-home.jpg");
    background-color: rgb(0, 0, 0);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#text {
    color: lightgrey;
    background-color: rgba(50, 50, 50, 0.4);
}

#logo {
  height: 12%;
    -webkit-animation: breathing 10s ease-out infinite normal;
    animation: breathing 10s ease-out infinite normal;
}

@-webkit-keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    75% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
    75% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.well {
  color: rgb(100,100,100);
    background-color: rgba(0,0,0,0.5);
    background-image: none;
    border-width: 0px;
}

.panel {
  color: rgb(135,135,135);
    background-color: rgba(0,0,0,0.0);
    background-image: none;
}

.table {
  color:rgb(135,135,135);
}

.list-group-item {
  background-color: rgba(0,0,0,0);
}

.news {
  border-width: 1px;
  border-color: white;
}
 .color-1 {
  color: rgb(255,0,0);
 }
 .color-2 {
  color: rgb(255,250,0);
 }
 .color-3 {
  color: rgb(4,255,0);
 }
 .color-4 {
  color: rgb(0,255,250);
 }
 .color-5 {
  color: rgb(0,4,255);
 }
 .color-6 {
  color: rgb(250,0,255);
 }