* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  margin-left: 20%;
  margin-right: 20%;
}

.conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.titulo {
  margin-bottom: 16px;
  padding: 10px;
  background-color: aliceblue;
  justify-items: center;
  width: 100%;
}

.bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.bloco img {
  display: flex;
  max-width: 100%;
  align-items: center;
  border-radius: 10px;
}

.bloco_gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}


@media only screen and (max-width: 1000px) {
  .container {
    display: flex;
    flex-direction: column;
    margin-left: 2%;
    margin-right: 2%;
  }
}