.course_div {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;

}

.courses {
  margin-top: 100px;
}

.card {
  display: grid;
  grid-template-columns: 320px;
  grid-template-rows: 210px 210px 80px;
  grid-template-areas: "image" "text" "stats";
  border-radius: 18px;
  background: white;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9);
  font-family: roboto;
  text-align: left;


}

.card-image {
  grid-area: image;

  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}

.course1 {
  background: url("../images/course1.jpg");
  background-size: contain;

}

.course2 {
  background: url("../images/course2.jpg");
  background-size: contain;
}

.course3 {
  background: url("../images/course3.jpg");
  background-size: cover;
}

.course4 {
  background: url("../images/course4.jpg");
  background-size: cover;
}

.card-text {
  grid-area: text;
  padding-left: 15px;
}

.card-text .date {
  color: rgb(255, 7, 110);
  font-size: 13px;
}

.card-text p {
  color: black;
  font-size: 16px;
  font-weight: 300;
}

.card-text h3 {
  margin-top: 0px;
  font-size: 25px;
  font-weight: 500;
  padding-left: 0px !important;
  text-align: center !important;
}

.card:hover {
  transform: scale(1.10);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
}

.card {
  transition: 0.5s ease;
  cursor: pointer;
  margin: 30px;
}

.button_card {
  padding-top: 35px;
}

.button_card_dis {
  padding-top: 10px;
}

.button_card_btn_dis {
  width: 60%;
}

@keyframes glowing {
  0% {
    background-color: #2ba805;
    box-shadow: 0 0 5px #2ba805;
  }

  50% {
    background-color: #49e819;
    box-shadow: 0 0 20px #49e819;
  }

  100% {
    background-color: #2ba805;
    box-shadow: 0 0 5px #2ba805;
  }
}

.button_card_btn {
  color: none;
  animation: glowing 700ms infinite;
  width: 60%;
}