* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.flexbox {
  display: flex;
  margin-top: 1em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.3em;
}

.emblem {
  width: 12em;
  border: solid black 2px;
}

.jersey {
  width: 12em;
  border: solid black 2px;
}

.flag {
  width: 7em;
  border: solid black 2px;
}

p {
  line-height: 2em;
  padding: 1em 1em;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .flexbox {
    flex-direction: row;
  }

  .jersey {
    width: 21em;
  }
}

@media screen and (min-width: 1440px) {
  .jersey {
    width: 38em;
  }

  .flag {
    width: 13em;
  }

  .emblem {
    width: 17em;
  }

  p {
    font-size: 1.3rem;
    line-height: 2.5em;
  }

  .flexbox {
    padding-right: 4em;
  }
}
