.instantPopups.svelte-1o4i9s4 {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    align-items: center
}

.githubIco.svelte-1o4i9s4 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgb(216, 216, 216);
    padding: 2px;
    border-radius: 5px;
    opacity: 0.6;
    transition: 0.3s
}

body.darkMode .githubIco.svelte-1o4i9s4 {
    background-color: whitesmoke
}

.githubIco.svelte-1o4i9s4:hover {
    opacity: 1;
    cursor: pointer
}

.svelte-1o4i9s4 {
    touch-action: manipulation
}

.input.svelte-1o4i9s4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px
}

.game.svelte-1o4i9s4 {
    display: grid;
    zoom:100%;grid-template-columns: repeat(var(--word-length), 100px);
    grid-template-rows: repeat(var(--max-guesses), 100px);
    gap: 10px;
    justify-content: center;
    align-content: center
}

.box.svelte-1o4i9s4 {
    background-color: var(--color);
    border-radius: 2px;
    border-style: solid;
    border-color: grey;
    border-width: 2px;
    font-size: 300%;
    color: grey;
    display: flex;
    justify-content: center;
    align-items: center
}

@media only screen and (max-height: 800px) {
    .box.svelte-1o4i9s4 {
        font-size:150%
    }
}

.noBorder.svelte-1o4i9s4 {
    border-width: 0
}

body.darkMode .box.svelte-1o4i9s4 {
    border-color: grey;
    color: white
}

body {
    background-color: #fff;
    transition: background-color 0.3s
}

body.darkMode {
    background-color: #1a1a1b
}

.keyboard.svelte-r0o5in {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 02px 50px;
    bottom: 12px
}

.keyboardRow.svelte-r0o5in {
    display: flex;
    justify-content: center;
    gap: 3px
}

.key.svelte-r0o5in {
    width: min(9.4vw, 60px);
    height: min(9.4vh, 75px);
    border-radius: 4px;
    border-color: black;
    background-color: white;
    transition: background-color 0.3s
}

body.darkMode .key.svelte-r0o5in {
    background-color: lightgrey
}

.specialKey.svelte-r0o5in {
    width: 80px;
    height: min(9.4vh, 75px);
    border-radius: 4px;
    border-color: black;
    background-color: lightgrey;
    font-weight: bold;
    transition: background-color 0.3s
}

body.darkMode .specialKey.svelte-r0o5in {
    background-color: grey
}

.popup.svelte-l2rdpq {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 5px 10px 18px #888888;
    padding: 10px;
    font-size: large;
    z-index: 9999
}

.instantpopup.svelte-11vgyrm {
    text-align: center;
    font-size: x-large;
    font-weight: bold;
    width: fit-content;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 5px 10px 18px #888888;
    padding: 10px;
    margin-bottom: 10px
}

.settings.svelte-1w4wnnm {
    background-color: aliceblue;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 300px;
    padding: 10px;r
    transition: background-color 0.3s
}

body.darkMode .settings.svelte-1w4wnnm {
    background-color: dimgray
}

.container.svelte-k0i19s {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.stats.svelte-k0i19s {
    display: flex;
    margin-bottom: 10px
}

.stat.svelte-k0i19s {
    flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    padding-left: 10px;
    padding-right: 10px
}

.statValue.svelte-k0i19s {
    font-size: 36px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.05em
}

.statKey.svelte-k0i19s {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.sidebar.svelte-k0i19s {
    top: 10px;
    right: 10px;
    text-align: right;
    text-align: center
}

.timer.svelte-k0i19s {
    color: gray;
    font-size: x-large;
    transition: background-color 0.3s
}

body.darkMode .timer.svelte-k0i19s {
    color: lightgray
}
