body {
  margin: 0;
  min-height: 100vh;
  background-image: url("fundo4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: black;
}

.conteudo {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 50px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.fotos {
  display: flex;
  gap: 20px;
}

.fotos img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}