body {
  background-image: URL(imagens/bg-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

h1 {
  color: white;
  text-align: center;
  font-size: 60px;
  box-shadow: 4px;
  text-shadow: 2px 2px 2px black;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 30px;
}

.header-p {
  color: white;
  text-align: center;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  margin: auto;
  width: 48%;
  padding: 10px;
  border-radius: 5px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-shadow: 2px 2px 2px black;
  border-bottom: 2px solid white;
  margin-bottom: 30px;
}

.images-main {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 860px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 16px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.card {
  flex-basis: 250px;
  flex-grow: 1;
}

.card img {
  width: 100%; /*para tirar o espaço lateral da imagem*/
  display: block; /*para tirar o espaço abaixo da imagem*/
}

.card p {
  background-color: #393535;
  color: white;
  text-align: center;
  font-size: 22px;
  margin: 0;
}
