body {
  margin: 0;
  font-family: 'Ubuntu Mono', monospace;
  background: url('background.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-family: 'Montez', cursive;
  font-size: 36px;
  color: rgb(29, 48, 255);
}

.tagline {
  font-size: 18px;
  color: rgb(0, 0, 0);
}

.auth-buttons button {
  background-color: #007bff;
  color: white;
  margin-left: 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.center-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  gap: 20px;
  height: 500px;
}

.center-buttons button {
  background-color: orange;
  color: black;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

