body {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #f6fff8;
  opacity: 0.2;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #f6fff8 10px), repeating-linear-gradient(rgba(0, 151, 46, 0.3333333333), #00972e);
}

.body-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.body-container .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.body-container .logo {
  width: 15vw;
  margin-bottom: 2rem;
}
.body-container .card-link {
  text-align: center;
  text-decoration: none;
}
.body-container .card-link .card {
  border-color: none;
  background: white;
  box-shadow: 0 0 10px rgba(211, 211, 211, 0.3);
  transition: all 0.2s ease-in-out;
}
.body-container .card-link img {
  width: 50%;
  margin-bottom: 1rem;
  transition: all 0.2s ease-in-out;
}
.body-container .card-link .title {
  color: #00972e;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}
.body-container .card-link h6 {
  font-weight: bold;
}
.body-container .card-link p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.2rem;
  height: calc(3 * 1.2rem);
}
.body-container .card-link:hover .card {
  box-shadow: 0 0 10px rgba(211, 211, 211, 0.8);
  border-color: #00972e;
}
.body-container .card-link:hover img {
  transform: translateY(-10%);
}/*# sourceMappingURL=home.css.map */