html, body {
margin: 0;
padding: 0;
border: 0;
background-color: black;
}

.align {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

#container {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 140px;
  cursor: pointer;

  background-color: transparent;
  background-image: url("/lgoo.png");
  background-size:contain;
  background-position: center;
  background-repeat: no-repeat;
}


