body{
  background-color: var(--bg);
  background-image: url("/assets/img/background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: var(--text);
  font-family: Arial, sans-serif;

  box-sizing: border-box;
  margin-left: var(--menu-width);
  padding: 40px;
}

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

a{
  color: inherit;
}

.box{
  max-width: 650px;
  margin: 0 auto;
  background: var(--panel-solid);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.log{
  background: #000;
  padding: 10px;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.06);
}

.dead{
  color: red;
  font-weight: bold;
  text-align: center;
}

.error-text{
  color:#ff6b6b;
}
