@charset "UTF-8";
/* CSS Document */
body {
  margin: 0;
  padding: 0;
  background-color: yellow;
}
.content,
.wipe {
  width: 100vw;
  height: 100vh;
}
.content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.content p {
  color: black;
  font-weight: bold;
  font-family: Arial;
  font-size: 2em;
  
}
.wipe {
  mask-image: url(https://vignette.wikia.nocookie.net/logopedia/images/3/3c/Batman_symbol_%282008-2011%29.svg);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 0;
  
  -moz-mask-image: url(https://vignette.wikia.nocookie.net/logopedia/images/3/3c/Batman_symbol_%282008-2011%29.svg);
  -moz-mask-repeat: no-repeat;
  -moz-mask-position: 50% 50%;
  -moz-mask-size: 0;
  
  -webkit-mask-image: url(https://vignette.wikia.nocookie.net/logopedia/images/3/3c/Batman_symbol_%282008-2011%29.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 0;
}
.wipe:hover {
  mask-size: 500%;
  -moz-mask-size: 500%;
  -webkit-mask-size: 500%;
  transition: 3s;
}
.black {
  background-color: black;
}
.black p {
  color: white;
}

