.funMain {
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 90vh;
}

.funCon {
  width: 60rem;
  max-width: 100%;
}

.funCard {
  height: 20rem;
  display: flex;
  flex-direction: row;
}

.funCard:hover {
  transform: scale(1.05);
  transition: transform 0.25s;
  background: #f0f0f0;
}

.funCardThumbnail {
  height: 100%;
  aspect-ratio: 4 / 3;
  padding: 20px;
}

.funText {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.funTitle {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 1.5rem;
  font-family: "Vollkorn";
  font-weight: 700;
  color: var(--col-text);
}

.funDesc {
  font-size: var(--fsize);
  font-family: 'Inter';
  font-weight: 200;
  line-height: 1.1rem;
  color: #000;
  line-height: calc(var(--fsize)* 1.3);
}

@media only screen and (max-width: 768px) {
  .funCon {
    width: 100%;
  }
  .funCard {
    flex-direction: column;
    height: fit-content;
    padding: 1.5rem 1.5rem;
  }
  .funCardThumbnail {
    width:100%;
  }
}
