  /* Header */

  h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    text-align: center;
  }

  /* Welcome paragraph */

  .welcome {
    color: white;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* Background*/

  body {
    background-color: #0d6efd;
    /* Bright Bootstrap blue */
  }


  /* Button */

  .btn {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 5000px;
    transition: all 0.3s;
  }

  /* Button hover */

  .btn:hover {
    transform: scale(1.15);
    background-color: white;
    color: black;
  }

  /* Images on the cards */

  .card img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  /* Fix button text visibility */

  .btn-info:hover,
  .btn--contact {
    background-color: #f00d68 !important;
    color: #fff !important;
  }

  /* Testimonial box styling */
  .testimonial-box {
    background-color: white;
    border: 10px solid hotpink;
    border-radius: 25px;
    color: black;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  /* Contact me button */

  .btn-contact {
    background-color: white !important;
    color: black !important;
    border: 2px solid black !important;
  }

  /* Bounce-in animation */
  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }

    60% {
      opacity: 1;
      transform: scale(1.05);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Cards start hidden */
  .card {
    opacity: 0;
  }

  /* Cards after animation */
  .card.animate-in {
    animation: bounceIn 0.6s ease forwards;
  }