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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: black;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('/assets/img/bitreaver2.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.content {
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 24px;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}

.nav {
    position: absolute;
    top: 20px;
    right: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.3);
}
.navbar {
  width: 100%;
  background-color: rgba(15, 14, 14, 0.85);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 2px solid #b9221b;
  font-family: 'Courier New', Courier, monospace;
}

.navbar a {
  color: #b9221b;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
  font-size: 1.1rem;
}

.navbar a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #b9221b;
}

.navbar-left {
  font-size: 1.5rem;
  color: #b9221b;
  font-weight: bold;
}
