:root {
  box-sizing: border-box;
}

*, :before, :after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

.portfolio {
  color: #fff;
  height: 100vh;
  background-color: #000;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.portfolio__header {
  width: 100vw;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  font-size: 1.5rem;
  display: flex;
}

.portfolio__content {
  grid-template-columns: repeat(1fr, auto);
  grid-gap: 2rem;
  width: 100vw;
  background-color: #000;
  grid-column: start / end;
  padding: 2rem;
  display: grid;
}

.card {
  transition: transform .2s ease-out;
}

.card__content {
  padding: 1rem;
}

.card:hover {
  transform: scale(1.05);
}

.card__content-img img {
  max-width: 100%;
}

.card__content-info {
  display: flex;
}

.info-1 {
  flex: 2;
}

.info-1 p {
  color: #bebebe;
  margin-top: .5rem;
}

.info-2 {
  flex: 1;
  margin-left: 2rem;
}

.info-2 img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  margin-top: .5rem;
}

.info-2 img:nth-of-type(n+2) {
  margin-left: 1rem;
}

@media screen and (min-width: 1000px) {
  .portfolio__content {
    grid-template-columns: repeat(2, auto);
  }
}

@media screen and (min-width: 1800px) {
  .portfolio__content {
    grid-template-columns: repeat(3, auto);
  }
}

/*# sourceMappingURL=index.ce57c7ac.css.map */
