#copy-btn {
  font-family: "CodeLanguage2_1_Monospace", monospace;
  font-size: var(--font-vw);
  color: #00FF00;
  background: black;
  border: 2px solid #00FF00;
  border-radius: 8px;
  padding: 16px 24px 8px 24px;
  margin: 0 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.copy-row {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
:root {
  --font-vw: 2.2vw;
}
@font-face {
  font-family: 'CodeLanguage2_1_Monospace';
  src: url('fonts/CodeLanguage2_1_Monospace.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Helvetica';
  src: url('fonts/Helvetica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  background: black;
}
.Logo {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 150px;
}
.alphabet-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 98vh;
}
.start {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.columns-container {
  display: flex;
  justify-content: center;
}
.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: .15vw;
}
.column span:first-child, .typed-letter-font, .start {
  font-family: "Helvetica";
  font-size: var(--font-vw);
  color: white;
}
.column span:last-child {
  font-family: "CodeLanguage2_1_Monospace", monospace;
  font-size: var(--font-vw);
  color: #00FF00;
}
.typed-row {
  margin-top: 20px;
  width: auto;
  text-align: center;
  justify-content: center;
  word-wrap: break-word;
  white-space: normal;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 16px;
}
.typed-letter-font {

  text-align: center;
}

.button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

#clear-btn, #backspace-btn {
  font-family: "CodeLanguage2_1_Monospace", monospace;
  font-size: var(--font-vw);
  color: #00FF00;
  background: black;
  border: 2px solid #00FF00;
  border-radius: 8px;
  padding: 16px 24px 8px 24px;
  margin: 0 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 8px;
}
#copy-btn {
  font-family: "CodeLanguage2_1_Monospace", monospace;
  font-size: var(--font-vw);
  color: #00FF00;
  background: black;
  border: 2px solid #00FF00;
  border-radius: 8px;
  padding: 16px 24px 8px 24px;
  margin: 0 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

#clear-btn:hover, #backspace-btn:hover {
  background: #00FF00;
  color: black;
  }

  #copy-btn:hover {
    background: #00FF00;
    color: black;
  }