/* img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
} */

body {
  margin: 0;
}

#element {
  position: absolute;
  margin: 0;
  width: 100%;
  height: 100vh;
}

.wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo {
  width: clamp(200px, 30vw, 300px);
  height: auto;
  text-align: center;
}

.logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 10px #a1007188);
  -webkit-filter: invert(100%);
  -moz-filter: invert(100%);
  -ms-filter: invert(100%);
  filter: invert(100%);

}

.copyright {
  color: #fff;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0px;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 50px;
}