body {
    background-color: lightblue;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    padding-bottom: calc(20vh + 20px);

}

#backdrop {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#typing {

    box-shadow: 0 0 0 20px navy;
    width: 80%;
    height: 14%;
    margin: 100px auto;
    background-color: aliceblue;
    letter-spacing: 10%;
    font-size: 1.8em;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;

}

#typing,
#try {
    background-color: aliceblue;
    letter-spacing: 15px;
    font-size: 3.7em;
}

#try- {
    display: flex;
    justify-content: center;
    gap: 5px;

}

.wordle-tries {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
}

#attempts {
    display: flex;
    align-content: space-evenly;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.char-colorbox {

    box-shadow: 0 0 0 2px navy;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    margin: 5px;
    padding: 10px;
    box-sizing: border-box;


}


h1 {
    text-align: center;
    font-size: 4em;
    font-family: monospace;
    padding: auto;
    position: static;
    top: 0px;
    font-family: 'Pokemon Solid', sans-serif;
    color: yellow;
    -webkit-text-stroke: 2px blue;
    text-shadow: -7px -7px 0 navy,
        7px -7px 0 navy,
        -18px 10px 0 navy,
        7px 15px 0 navy;



}

#how-many {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    font-size: 1.2vw;
    display: flex;
    font-family: 'Pokemon Solid', sans-serif;
    text-align: center;
    box-sizing: border-box;
    color: yellow;
    -webkit-text-stroke: 1px navy;
    flex-wrap: wrap;
}



.wordle-image {
    position: relative;
    bottom: 0;
    width: 80vw;
    max-width: 800px;
    height: calc(80vh - 20vh);
    max-height: calc(100vh - 20vh - 100px);
    max-height: 500px;
    justify-self: center;
    background-color: pink;
    margin-bottom: 20px;
    justify-content: center;
    width: 800px;
    height: 500px;
    background-color: pink;
    height: calc(80vh - 20vh);
    overflow-y: auto;
    padding-bottom: 20vh;
}


.keyboard {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 192, 203, 0.7);
    z-index: 100;
    height: 20vh;
}




.keyboard__row {
    display: flex;
    justify-content: center;

}

#one #two #three {
    height: auto;
}


.keyboard__row>* {

    position: relative;
    text-align: center;
    color: #eee;
    float: left;
    border-radius: 0.3em;
    margin: 0.2em;
    padding: 0.2em;
    width: 3.3em;
    height: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid #444;
}


.key--letter {
    line-height: 30 px;
    height: 3vw;
    width: 3vw;
    text-align: center;
    background-color: black;
    text-shadow: black;
}


.keyboard>.keyboard__row {
    text-align: center;
}