.tasks {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.tasks > h2 {
  font-weight: 100;
  font-size: 1.6rem;
}
.tasks h3 {
  font-size: 1.6em;
  font-weight: 100;
}

.tasks-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.tasks .task {
  width: 100%;
  height: 100px;

  font-size: 0.7rem;

  padding: 10px;
  border-radius: 2px;

  display: flex;
  gap: 10px;

  background-color: var(--bg-secondary);
  text-decoration: none;

  color: var(--text-color-200);

  transition: all ease 130ms;
}

.tasks .task:hover {
  background-color: var(--bg-tertiary);
  color: var(--color-primary-2);
}
