* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: black;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-center {
  text-align: center;
}
.bg-purple {
  position: relative;
  background: #832cdb;
  width: 300px;
  height: 300px;
  -webkit-mask-image: url(/assets/images/png/splash.png);
  -webkit-mask-size: 300px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image {
  width: 200px;
}
