* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #05081dff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font */
  font-size: 10px;
  color: white;
}

.no-drag {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* Logo positioning */
.logo-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
}

.logo {
  max-width: 50px;
}

/* Content area for center text */
.content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  text-align: center;
}

h1 {
  font-family: "Monoton", sans-serif;
  font-size: 4rem;
  font-weight: 100;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

h2 {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
