/**
 * CSS files with the .module.css suffix will be treated as CSS modules
 * and scoped locally.
 */

 .cardWrapper, 
 .cardWrapper:hover {
  color: inherit;
  text-decoration: none;
  }

.card {
  border-radius: 10px;
  box-shadow: 0 1.5px 3px 0 rgb(0 0 0 / 15%);
  margin: 1rem 0;
  padding: 2rem;
}

.card:hover{
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
}

.cardIcon {
  margin-bottom: 10px;
}

/* Styles */
.dark .card{
  background-color: rgba(6, 6, 42, 0.8);
  color: #fff;
}

.gradient .card {
  background-image: linear-gradient(to left top, #48d0e0, #00baf9, #009fff, #0079ff, #6633ff);
  color: #fff;
}

.light .card {
  align-items: center;
  border: 1px solid var(--ifm-color-emphasis-200);
  border-radius: 20px;
  color: var(--ifm-color-emphasis-800);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 2rem;
}

@media (max-width: 996px) {
  .cardFooter {
    display: none;
  }
}

