body {
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.logo {
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: white;
  -webkit-mask-image: url("s360-logo.svg");
          mask-image: url("s360-logo.svg");
}
.logo:hover {
  background-color: cyan;
}