/* Animation for Logo */
@-webkit-keyframes logo {
  from {
    opacity: 0;
    width: 75%;
    height: auto;
  }

  to {
    opacity: 1;
    width: 50%;
    height: auto;
  }
}

@keyframes logo {
  from {
    opacity: 0;
    width: 75%;
    height: auto;
  }
  to {
    opacity: 1;
    width: 50%;
    height: auto;
  }
}

.fadeIn {
  animation-name: logo;
}
/* End animation for logo */

.netflix-logo {
  width: 50%; 
  height: auto;
  margin-top: 5%;
  animation-name: logo;
  animation-duration: 5s;
}

.logo-container {
  text-align: center;
  color: white;
  margin-bottom: 2%;
}

#little-netflix-logo {
  width: 25%; 
  height: auto;
  margin-top: 2%;
  margin-bottom: 2%;
}

.jumbotron {
  padding: 0;
  background-color: transparent;
  text-align: center;
}

.container-footer {
  font-size: 6;
  text-align: center;
  color: rgba(128, 128, 128, 0.3);
  padding-bottom: 1%;
}

body {
  margin: 1%;
  padding: 1%;
  background-image: url("../images/micro_carbon.png");
  background-repeat: repeat;
  font-family: 'Oswald', sans-serif;
}

.food-input {
  background-color:rgba(0, 0, 0,.5);
  color: white;
}

.movie-input {
  background-color:rgba(0, 0, 0,.5);
  color: white;
}

.food-display {
  background-color:rgba(0, 0, 0,.5);
  color: white;
}

.movie-display {
  background-color:rgba(0, 0, 0,.5);
  color: white;
  padding-bottom: 1.5%;
}

.get-started {
  text-align: center;
  color: white;
}

#solution {
  font-size: 36pt;
  margin-top: 2%;
}

#start {
  font-size: 16pt;
  padding-bottom: 1%;
}

.card-header {
  text-align: center;
}

.recipe {
  background-color:rgba(0, 0, 0, 1);
  text-align: center;
  border-radius: 5px;
}

.movie {
  background-color:rgba(0, 0, 0, 1);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  background-color: rgb(185, 9, 11);
  margin-left: 1%;
  margin-top: 2%;
}

.movieEdit {
  background-color:rgba(0, 0, 0, 1);
  width: 18rem;
}

.movieEdit img {
  max-height: 400px;
}

.movieEdit .btn{
  display: inline-flex;
}

.container-sign-up {
  background-color:rgba(0, 0, 0,.5);
  color: white;
  padding: 1%;
}

.container-login {
  background-color:rgba(0, 0, 0,.5);
  color: white;
  padding: 1%;
}

.container-recipes .card {
  flex-direction: row;
  vertical-align: top;
  background-color:rgba(0, 0, 0, 1);
  outline: 1px white;
}

.food-display .container-recipes h3.recipe-title {
  height: 70px;
  text-align: center;
}

.card-body {
  text-align: center;
}

.food-input-group {
  margin: 1%;
}

#food-submit-btn {
  margin-top: 0;
  margin-right: 1%;
  height: 40px;
}

#food-container {
  outline: 1px solid white;
}

#movie-additional-info{
  background-color:rgba(0, 0, 0,.5);
  color: white;
  padding: 2%;
  border-radius: 5px;
  text-align: center;
}

li.list-group-item {
  background-color:rgba(0, 0, 0, 1);
  outline: 1px solid white;
}

h2 {
  margin-bottom: 2%;
}