.imagem { 
  width: auto;
  height: auto;
  transform: scale(0.5);
  animation: aparecer 2s forwards;
  }

@keyframes aparecer{
    from{
      opacity: 0;
    }
    to{
      opacity: 1;
      transform: scale(1);
    }
  }

h1{
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;  
}

.icone {
    width: 5rem;
    height: 5rem;
    text-align: center;
}

		