* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}
body{
    overflow-x: hidden;
}
.theme-text {
  color: #e02626;
}
.sub-head{
    font-size:28px;
}
.card-img-top {
  height: 200px;
  width: 96%;
  margin-left:2%;
  margin-right: 2%;
  margin-top: 2%;
  border-radius: 4px;
}
.card {
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}
.card:hover {
  color: white;
}
.card::before {
    content: "";
  position: absolute;
  left: -100%;
  top: 0%;
  background: #e33838;
  color: white;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
.card:hover::before {
  left: 0%;
  color: white;
}
.container-fluid {
  background-image: url("blob-scene-haikei.svg");
  background-position: center;
  background-size: cover;
}
.card:hover {
    color: white;
  }