html, body{
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulsate {
    0% {
        background-color: #ee7752;
    }
    50% {
        background-color: #e73c7e;
    }
    100% {
        background-color: #23d5ab;
    }
}



.form-control.rounded {
    border-radius: 20px; /* Adjust the border radius as needed */
    padding: 10px; /* Adjust the padding as needed */
    width: 200px; /* Adjust the width as needed */
  }
  
  #search-input::placeholder {
    color: gray; 
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;/* Adjust the placeholder color as needed */
  }
  .navbar-brand {
    font-family: 'Rubik';
  }
  
  .nav-link {
    font-family: 'Rubik';
  }
.flash-messages {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .flash-messages li {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: white;
    font-family: 'rubik';
    font-size: 30px;
    text-shadow: 2px 2px 2px black;
    opacity: 0;
    animation: fade-in 4s ease-in forwards;
  }
  @keyframes fade-in {
    from {
        opacity: 0;
  }
  to {
    opacity: 1;
  }
}
footer { 
    color: white;
    font-family: 'Rubik';
    text-shadow: 1px 1px 1px black;
    background-color: black;
    margin-top: 20px;
  
}
.footer a {
  text-decoration: none;
}
  
  