body {
  font-size: 16px;
}

.big-letters {
  font-size: 24px;
}

a {
  color: black;
}

a:hover {
  color: darkgray;
  text-decoration: none;
}

.count {
  background-color: lightgray;
  padding: 1px 12px;
  border-radius: 10px;
}

.time {
  -webkit-animation-name: time-animate;
          animation-name: time-animate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
}

@-webkit-keyframes time-animate {
  0% {
    color: white;
  }

  90% {
    color: #e3342f;
  }

  100% {
    color: white;
  }
}

@keyframes time-animate {
  0% {
    color: white;
  }

  90% {
    color: #e3342f;
  }

  100% {
    color: white;
  }
}

.pagination > li > a,
.pagination > li > span {
  color: black;
}

.pagination > li > a:hover {
  color: gray;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: gray;
  border-color: transparent;
}

#pic {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

#pic_welcome_wrapper {
  width: 100%;
  height: 300px;
}

#pic_cards_wrapper {
  width: 300px;
  height: 200px;
}

.dropdown-item {
  color: green;
}

