/* Importing the IM Fell French Canon Google Font */
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+French+Canon&display=swap');

/* Custom Styles */
body {
  font-family: 'IM Fell French Canon', serif;
}

#showcase {
  background-image: url("Images/header.jpg");
  height: 95vh;
  background-size: cover;
  background-position: center;
  color: white;
}

/* Media Queries */
@media (max-width: 768px) {
  #showcase {
    padding: 0 100px;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .card-text {
    height: 110px;
  }
}

@media (min-width: 1200px){
  .card-text {
    height: 90px;
  }
}

@media (min-width: 1400px){
  .card-text {
    height: 70px;
  }
}