@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
  --disable: #bbb;
  --enable: #222;
  --color-white: #fff;
  --color-gray: rgba(153, 153, 153, 0.2);
  --color-border: #222;
}

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

html {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  min-width: 100vw;
  min-height: 100vh;
  color: var(--color-white);
  background: var(--color-gray);
  font-family: 'Press Start 2P', cursive; /* Apply the new font */
}

.options {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.option {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}

.option_type {
  font-size: 1rem;
  color: var(--disable);
  font-weight: 800;
  text-align: center;
}

.option_type-des {
  font-size: 0.7rem;
  color: var(--color-border);
}

#opt2 {
  color: var(--enable);
}

.btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5rem;
  background: rgba(153, 153, 153, 0.2);
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.leaderboard {
  position: absolute;
  top: 0;
  left: 3rem;
  display: flex;
  flex-direction: column; 
  border: 4px double var(--color-border);
  padding: 0.3rem;
}

.leaderboard__head {
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #222;
  padding: 0.6rem;
}

.leader {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem;
  border-bottom: 1px;
  border-bottom-style: groove;
  text-transform: capitalize;
}

.key {
  display: inline-block;
  padding: 2px 6px;
  margin: 0 2px;
  background-color: #222;
  color: #fff;
  border-radius: 4px;
  font-family: monospace;
}

.footer {
  text-align: center;
  margin-top: 5px;
  font-size: 0.9rem;
  color: #555;
}

.footer .heart {
  color: red;
}

.footer a {
  color: #007bff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
