* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #050b16;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo-wrapper img {
  max-width: 320px;
  width: 90vw;
  height: auto;
  user-select: none;
}

@media (max-width: 480px) {
  .logo-wrapper img {
    max-width: 240px;
    width: 80vw;
  }
}

@media (min-width: 1200px) {
  .logo-wrapper img {
    max-width: 420px;
  }
}
