/* LISTS */
.list {
  display: flex;

  width: 100%;
  flex-wrap: wrap;
  justify-content: left;
  flex-direction: column;
}

/* CARDS */
.card {
  position: relative;
  display: flex;

  padding: 1em;
  min-height: 10em;
  margin: 1em 0 1em 0;
  align-items: center;
  border-radius: 15px;
  flex-direction: row;
  justify-content: start;
}

.card,
.card * {
  background-color: var(--background);
}

.card-spacer {
  display: flex;

  width: 100%;
  flex-direction: row;
  margin: 10px 2em 1em 0;
  justify-content: space-between;
}

.card .image path {
  fill: var(--text);
  opacity: 0.1;
}

.card .image {
  display: block;

  width: 10em;
  height: 10em;
  margin: 10px 2em 1em 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.about {
  display: flex;

  height: 100%;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
}

.about p {
  padding: 0;
  text-align: left;
}

.name {
  font-size: 1.5em;
  text-align: left;
  padding: 0 0 5px 0;
  color: var(--contrast);
}

.description {
  font-size: 1em;
  font-size: 18px;
  text-align: left;
  padding: 0 0 10px 0;
  color: var(--accent);
}

.rating {
  padding: 0; 
  font-size: 30px;
  padding-bottom: 6px; 
}

.image-list {
  display: flex;

  flex-wrap: wrap;
}

.image-list .image img {
  display: inline-block;

  height: 100px;
  padding-right: 30px;
}

.team {
  width: 300px !important;
  height: 300px !important;
  min-width: 10em;
}

.sponsor {
  color: var(--text);
  height: auto !important;
  width: 200px !important;
} 

/* RESPONSIVENESS */
@media only screen and (max-width: 555px) {
  .about p {
    text-align: center;
    padding: 0 0 10px 0;
  }

  .card {
    flex-direction: column;
  }

  .card-spacer, .card .image {
    margin-right: 0;
  }

  .team {
    background-position: center;
  }

  footer {
    position: relative !important;
  }
}
