@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --lime-green: #32c810ff;
  --black: #000000ff;
  --amber: #f5bb00ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

html,
body {
  display: flex;
  flex-direction: column;
}

body {
  color: white;
  background-color: var(--black);
  line-height: 1.6;
  margin: 0;
}

main {
  flex: 1;
}

header {
  position: sticky;
  top: 0;
  background: var(--black);
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  padding-top: 25px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  text-align: center;
}

.navbar a {
  text-decoration: none;
  color: var(--lime-green);
  margin: 0 15px;
  font-size: 1rem;
  font-weight: 700;
}

.get-zephix {
  background: var(--lime-green);
  color: var(--black) !important;
  padding: 5px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.get-zephix:hover {
  background: var(--amber);
  color: var(--black);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--lime-green);
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: justify;
  width: 100%;
  max-width: 900px;
}

footer {
  margin-top: 0;
  text-align: center;
  color: var(--lime-green);
  padding: 20px;
}

footer p {
  text-align: center;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--lime-green);
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--amber);
}

.keybindings {
  text-align: left;
  width: 100%;
  max-width: 900px;
  list-style-type: none;
  font-size: 1.2rem;
}

.keybinding {
  align-items: center;
  appearance: none;
  background-color: #fcfcfd;
  border-radius: 4px;
  border-width: 0;
  box-shadow:
    rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px,
    #d6d6e7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395a;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  white-space: nowrap;
  font-size: 1rem;
  font-family: monospace;
}

.keybindingaction::before {
  content: ">";
  padding-left: 17px;
  padding-right: 12px;
}

.keybindings li {
  margin-bottom: 0.7rem;
}

.keybindings li:last-child {
  margin-bottom: 1rem;
}

.awardbadge {
  width: 7rem;
  height: auto;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}

@media (max-width: 768px) and (orientation: portrait) {
  p {
    text-align: left;
  }
  .keybindings .keybinding {
    margin-top: 1.5rem;
  }
  .keybindingaction {
    display: block;
    margin-bottom: 1.5rem;
  }
  .keybindingaction::before {
    display: none;
  }
  .keybindings {
    text-align: center;
  }
  .awardbadge {
    max-width: 64px;
  }
}