body {
    margin: 0;

    min-height: 100vh;
    
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 20px;
    background-color: black;   
    color: black;
    font-family: "EB Garamond", sans-serif;
    font-size: 18px;
}

h1 {
    font-size: 32px;
    font-family: sans-serif;
}

button {
  margin-top: 15px;
  padding: 2px 15px;

  border: 1px solid black;
  border-radius: 999px;

  background-color: white;
  color: black;

  font-size: 14px;
  cursor: pointer;
}

.selector-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.progress-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.nav-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 15px;
}

.select {
    padding: 10px 14px;
    border: 1px solid black rounded;
    border-radius: 12px;
    font-size: 16px;
}

.card {
    background-color: #F9F6EE;
    border: 5px solid black;
    padding: 32px;
    border-radius: 24px;

    width: 90%;
    max-width: 500px;

    text-align: center;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.verseInput {
    width: 80px;
    border: none;
    border-bottom: 2px solid gray;
    background: transparent;
    color: black;
    text-align: center;
    font-size: 18px;
    outline: none;
    margin: 0 4px;
}

.verseInput.correct {
    border-bottom: 3px solid #5D8FE7;
}

#verseProgress {
    width: 100%;
    height: 12px;
}