body, html {
  margin: 0;
  padding: 0;
  background-color: #000;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem-clique {
  width: 90vw;
  max-width: 600px;
  height: auto;
  cursor: pointer;
  animation: revelar 0.6s ease;
}

@keyframes revelar {
  from {
    clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
