* {
    /* border-style: solid; */
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.page-title {
    /* text-align: center; */
    font-family: "Cheese";
    font-size: clamp(1.75rem, 5vw, 5rem);
    text-align: center;

    padding: 0.25em;
    /* margin-bottom: 0.25em; */
    text-decoration: underline;
    text-underline-offset: 0.1em;
    text-decoration-thickness: 0.05em;
    text-decoration-color: goldenrod;
    /* text-decoration-style: wavy; */

}

.directions {
    font-family: "Candy";
    font-size: clamp(1.15rem, 5vw, 2.5rem);
    font-weight: bolder;

    text-align: center;
    line-height: 1.35em;
}

.directions-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.passage-board {
    padding: 0.5em;
    /* width: 55%; */
    margin-left: clamp(16px, 5vw, 120px);
    margin-right: clamp(16px, 5vw, 120px);
}

.passage-board-final-stage {
    background-color: beige;
    border: 3px solid goldenrod;
    border-radius: 10px;
}

.passage-strip {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    width: 100%;

    background-color: beige;
    border: 3px solid goldenrod;
    border-radius: 10px;
    margin-bottom: 0.5rem;

}

.word-panel {
    display: flex;
    flex-wrap: wrap;
}

.word-buttons,
.challenge-button {

    font-family: "Verdana, Geneva, Tahoma, sans-serif";
    /* font-size: clamp(1.25rem, 3vw, 2rem);  /* min, adjustable, max */
    font-size: clamp(1rem, 5vw, 2rem);

    padding: 0.25em 0.5em;
    margin: 0.25em;

    border: solid black 0.125em;
    border-radius: 0.5em;
}

.locked-word-buttons {
    color: black;
    background-color: gray;
    cursor: not-allowed;
}

.unlocked-word-buttons {
    color: darkgoldenrod;
    background-color: plum;
    background-color: lightyellow;
    cursor: hand;
}

.scrambled-word-buttons {
    color: navy;
    background-color: deepskyblue;
    cursor: hand;
}

.solved-word-buttons {
    color: darkgreen;
    background-color: limegreen;
    cursor: not-allowed;
}

.challenge-button {
    font-family: "Cheese";
    font-size: clamp(1.5rem, 5vw, 3rem);

    color: indigo;
    background-color: plum;

    border: .08em solid;
    box-shadow: 0 9px indigo;

    opacity: 0;
    animation: 5s fadein ease forwards;
    /* transition: opacity 5s; */
    /* Requires an event to trigger such as mouse hover */
}

.challenge-button:active {
    box-shadow: 0 2px indigo;
    transform: translateY(5px);
}

@keyframes fadein {
    100% {
        opacity: 1;
    }
}


.status-panel {
    display: flex;
    align-items: center;
}

.indicator-image {
    /* width: 5vw; */
    height: clamp(1.25rem, 4vw, 3rem);
    border-radius: 10px;
    padding: 0.25em;
    /* Caution: this size controls the height of the word buttons. The buttons will rise to fill the height. */
    margin: 0.5em;
    /* height: 4vh; */
}

.indicator-status {
    /* order: 1; */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: darkgoldenrod;
}

.scripture-display {
    font-family: "candy";
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    text-align: center;

    width: 75%;
    /* height: 25vh; */

    margin-top: 0.25em;
}

.celebration-display {
    font-family: "cheese";
    font-size: clamp(1.5rem, 5vw, 4rem);
    text-align: center;

    width: 90%;
    margin-top: 0.5em;
}

.celebration-display .heart-red {
    /*.heart-text{*/
    /* display: inline-block; */
    color: red;
}

@media screen and (orientation: portrait) {

    .passage-board {
        width: 85%;
    }

    .passage-strip {
        gap: 0;
    }

    .indicator-status {
        display: none;
    }
}