@import url('./components/header.css');
@import url('./components/general.css');

.article {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.leftcolumn {
  flex: 1;
  max-width: 100%;
  margin-right: 0;
}

.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card h2 {
  color: red;
  border-bottom: 2px solid black;
  width: 30%;
}

.card h4 {
  display: flex;
  justify-content: flex-end;
  color: gray;
}

.fakeimg {
  width: 100%;
  padding: 20px;
}

@media screen and (min-width: 800px) {
  .leftcolumn {
    max-width: 800px;
    margin-right: 20px;
  }
}