* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: url("../assets/images/background.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HOME SCREEN */

.home {
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 12px;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.logo, .qmark {
  width: 45px;
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #1d4ed8;
}