* {
  box-sizing: border-box;
  font-family: "consolas", monospace;
}

:root {
  --background: #CFF0EA;
  --primary: #88C9C4;
  --border: #20666B;
  --text: #0C3B45;
}

body {
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--background);
  color: var(--text);
}

section {
  max-width: 600px;
  margin: 5px;
  padding: 20px;
  border-radius: 15px;
  background-color: var(--primary);
  border: 2px solid var(--border);
}

button {
  min-width: 50px;
  min-height: 30px;
  background-color: #CFF0EA;
  border: 1px #20666B solid;
  color: #0C3B45;
  font-weight: bold;
  border-radius: 10px;
}

input {
  margin: 10px 0;
  height: 30px;
  text-align: center;
}

h1, h2 {
  text-align: center;
  margin: 10px 0;
}

span, label {
  margin: 10px 0;
  font-weight: bold;
  font-size: 17px;
}

.narrower {
  display: flex;
  justify-content:space-around;
  gap: 20px;
}

#alphabet {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#alphabet p {
  width: 250px;
}

.user-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}