@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #161922;
  color: #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'JetBrains Mono';
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  width: 100%;
  padding: 10px 30px;
  background-color: black;
  position: relative;
  border-bottom: 1px solid #555;
}

.header-wrapper {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.logo {
  text-decoration: none;
  font-size: 18px;
  font-weight: 1000;
  font-family: 'Permanent Marker';
}

.secret-level {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 800px;
  padding: 24px 0;
}

.user-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.user-nameplate {
  display: flex;
  gap: 5px;
  align-items: center;
  border: 2px solid grey;
  border-radius: 24px;
  padding: 5px 12px; 
}

.login-btn {
  border: 2px solid grey;
  border-radius: 24px;
  padding: 5px 12px;
  text-decoration: none;
}

.anon {
    background-color: black;
    padding: 0 3px;
}

.hidden-label {
  display: none;
}

.error {
  color: hotpink;
}

button {
  cursor: pointer;
}

.submit-btn {
  margin-top: 30px;
}

.btn {
    background-color: #ccc;
    color: #111;
    padding: 5px 15px;
    border-radius: 24px;
    border: none;
}

footer {
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 5px 0;
}