body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-style: normal;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0b0b0c;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.BackgroundImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  z-index: -1;
  pointer-events: none;
}

.LoginContainer {
  z-index: 1;
  text-align: center;
  position: relative;
}

h1 {
  font-weight: 300;
  font-size: 3em;
  margin-bottom: 100px;
  color: #f3ffeb;
}

#UserName {
  border: 2px solid transparent;
  outline: none;
  box-sizing: border-box;
  text-align: center;
  background-color: #27272a;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1em;
  font-family: sans-serif;
  width: 400px;
  height: 50px;
  display: block;
  color: white;
  margin: 0 auto 20px auto;
}
#UserName::placeholder {
  color: #4b4b4b;
  opacity: 1;
}

#UserName:focus {
  outline: none;
  border: 2px solid #191a1c;
}

button {
  border: none;
  border-radius: 10px;
  font-size: 1em;
  cursor: pointer;
  font-family: sans-serif;
  width: 400px;
  height: 50px;
  display: block;
  margin: 10px auto;
  transition: background-color 0.2s ease;
  padding: 10px 20px;
  padding-top: 15px;
  padding-bottom: 10px;
}

#ContinueButton {
  background-color: #191a1c;
  color: white;
}

#DiscordLinkButton {
  background-color: #1b1b44;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 8px;
  margin-top: 100px;
}

#DiscordLinkButton img {
  height: 20px;
  margin-right: 30px;
  position: relative;
  padding-bottom: 5px;
  top: 2px;
}