@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');

@font-face {
  font-family: 'SUSE';
  src: url('../SUSE.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

body {
  background-color: #000;
  font-family: 'Space Mono', monospace;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.grub-container {
  color: #fff;
  text-align: left;
  width: 80%;
}

pre {
  font-family: 'Space Mono', monospace;
  font-size: 12.4px;
  margin: 0;
  white-space: pre-wrap;
}

kbd {
  color: #00ff00;
}

.grub-selection-container {
  margin-top: 1rem;
  border: 2px solid #fff;
  padding: 2rem ;
  flex-direction: column;
  align-items: center;
}

.grub-selection {
  padding: 0.38rem;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 10px;
}

.grub-selection:hover {
  background-color: #fff;
  color: #000;
}

.grub-selection.selected {
  background-color: #fff;
  color: #000;
}

.grub-selection-marker {
  color: #00ff00;
  margin-right: 0.5rem;
}

.watermark {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: left;
  font-size: 12px;
  color: rgba(185, 185, 185, 0.4);
  font-family: "SUSE", sans-serif;
  pointer-events: none; /* So it doesn’t block clicks */
  user-select: none;
}