body {
  font-family: "Raleway", sans-serif;
  height: 100%;
  margin: 0;
  background-image: url("../images/movie-background-collage.jpg");
  background-size: cover;
  background-color: #011017;
}


.homepage-title {
font-family: "Limelight", cursive;
  font-size: 4rem;
  margin-top: 5px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgb(250, 239, 239);
 text-shadow: 2px 2px #1ba098;
}


.custom-about {
  opacity: 0;
  animation: slideIn 2s ease-in-out forwards;
  color: white !important;
  font-weight: bold;
}

.card {
  min-height: 300px;
  background-color: rgba(0, 0, 0, .75) !important;
}

.card-img-top {
  object-fit: cover;
  max-height: 200px;
  object-position: top;
}

.card-img {
  margin-top: -10px;
}

.img-link {
  padding-right: 0;
}


.card-title {
  text-align: center !important;
  margin-top: 6px;
}
.title-container {
  /* height: 60px; */
  overflow: hidden;
}

.card-body.custom-body {
  padding: 0.5em 0.5em 25px;
}

footer {
  position: relative;
  width: 100%;
  height: 50px;
  padding: 10px;
}

.info-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
}

/* .info-container p {
  margin-bottom: 0;
  margin-top: 0;
} */

#votes,
#user {
  position: absolute;
  bottom: 8px;
  margin-bottom: 0;
  color: #8d8d8d !important;
}

#votes {
  left: 8px;
}

#user {
  right: 8px;
}

#user a {
  color: var(--link) !important;
}

#user a:hover {
  color: white !important;
}

.card-text {
  white-space: nowrap;
  /* color: #BBBBBB !important; */
  font-size: .9em;
}

.pollTitle {
  margin-bottom: 5px;
  text-align: center;
  font-size: 1.2em;
}

@media screen and (max-width: 650px) {
  footer {
    position: relative;
    height: 70px;
    padding: 0px;
    border-top: solid #1ba098;
    margin-top: 100px;
    /* font-size: 15px; */
  }

  .homepage-title {
    font-family: "Limelight", cursive;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.886);
  
  }

  .pollTitle {
  font-size: 1em !important;
  padding: 5px;
  text-align: center;
}

  .custom-about {
    display: none;
  }

  .card-text {
    font-size: 12px;
  }

  
}

@media screen and (max-width: 768px) {

  .card {
      min-height: 0;
    }
    
}

@media screen and (max-width: 990px) {
  .info-container {
    font-size: 0.9em;
    margin-top: 8px;
  }

  .pollTitle {
    text-align: center;
    font-size: 16px !important;
  }

  /* .card-text {
    font-size: 9px;
  } */
}


@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
