* {
   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;
}

.bloco {
   max-width: 100%;
}

.bloco img {
   max-width: 100%;
   border-radius: 30px;
}

.bloco_img {
   display: flex;
   flex-direction: row;
   max-width: 100%;
   background-color: aliceblue;
   text-align: center;
   padding: 20px;
   border-radius: 30px;
}

.card_img {
   justify-items: center;
   border-radius: 30px;
}

.bloco_img .card_img img {
   max-width: 60%;
   border-radius: 30px;
}

#botao {
   display: flex;
   width: 100%;
   align-items: center;
   justify-content: center;
   margin-top: 10px;
   margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
   .container {
      margin-left: 2%;
      margin-right: 2%;
   }

}