.container {
  display:flex;
  flex-direction: row;
  width: 100%;
  gap: 1rem;
  margin-bottom: 1rem;
}

.container a {
  border-bottom: dotted 0px;
}

.cards {
  display: flex; 
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.card {
  background-color: rgba(100, 100, 100, 0.5);
  border-radius: 16px;
  font-size: medium;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: background-color 0.5s ease-in-out, transform 0.2s ease-in-out;
  backdrop-filter: blur(50px);
}

@media screen and (max-width: 850px) {

  .container {
    flex-direction: column;
  }

}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(100, 100, 100, 0.7);
  background-color: rgba(100, 100, 100, 0.2);
  backdrop-filter: blur(50px);
}

.card:active {
  transform: scale(0.95);
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-header {
  font-size: 1rem;
  padding: 0.3rem 1rem;
  letter-spacing: 0.1rem;
}

.card-content {
  font-size: 0.8rem;
  color: #BBB;
  line-height: 1.3;
  font-weight: 200;
  padding: 0rem 1rem 1rem;
}