/*
colors:
dark green: #5E782B
green: rgb(0, 158, 115)
white: #ffffff
yellow: rgb(240, 228, 66)
red: rgb(213, 94, 0)
*/

body, html {
    background-color: rgb(0, 0, 0);
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

* {
    font-family: 'Roboto Slab', sans-serif;
}

a {
    color: rgb(240, 228, 66);
    text-decoration-style: dotted;
}

.top {
    display: flex;
    justify-content: center;
    color: #ffffff;
    width: 100%;
}

.main {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    width: 80%;
    text-align: center;
}

.title h1 {
    font-size: 27px;
}

.inst, .data {
    width: 10%;
    text-align: center;
}

.inst, .data{
    cursor: pointer;
}

.top h1 {
    font-weight: 900;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    flex-direction: column;
}

.wizard {
    text-align: center;
    width: 70%;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 15px;
}

.wizard ul {
    font-size: 12px;
    list-style-type: none;
    text-decoration: dotted;
}

.chance {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.entry {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    border-radius: 5px;
    margin:3px;
    text-transform: uppercase;
    font-weight: 900;
}

.select {
    border: 3px solid #ffffff;
    cursor: pointer;
    color: #ffffff;
}

.selected {
    border: 3px solid rgb(240, 228, 66);
    background-color: rgb(240, 228, 66);
    color: rgb(0, 0, 0);
    cursor: pointer;
}

.play {
    background-color: rgb(240, 228, 66);
    border-radius: 5px;
    padding: 10px 15px 10px 15px;
    cursor: pointer;
    border: 0px;
    font-size: 20px;
    color: rgb(0, 0, 0);
}

.curr_chance .entry, .not_curr_chance .entry, .wasted_chance .entry, .wizard .entry {
    width: 40px;
    height: 40px;
}

.curr_chance .not_filled {
    border: 3px solid #ffffff;
}

.curr_chance .filled {
    background-color: #ffffff;
    border: 3px solid #ffffff;
}

.not_curr_chance .not_filled, .wasted_chance .not_filled {
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.not_curr_chance .filled, .wasted_chance .filled {
    background-color: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.keyboard {
    width: 80%;
    margin-top: 30px;
}

.top_letters, .mid_letters, .bottom_letters {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.keyboard .entry {
    background-color: rgba(255, 255, 255, 0.8);
    color: rgb(0, 0, 0);
    width: 50px;
    height: 30px;
    cursor: pointer;
}

.keyboard .enter {
    background-color: rgb(240, 228, 66);
}

.keyboard .backspace {
    background-color: rgb(213, 94, 0);
    color: #ffffff;
}

.refresh {
    background-color: rgb(213, 94, 0);
    border-radius: 5px;
    padding: 10px 15px 10px 15px;
    cursor: pointer;
    border: 0px;
    font-size: 20px;
    color: #ffffff;
    margin: 0;
}

.win, .lose {
    display: none;
}

.word {
    padding: 3px;
    border-radius: 5px 3px 5px 3px;
    background-color: rgb(213, 94, 0);
    font-weight: 700;
    font-size: 14px;
}

.bottom {
    bottom: 0;
    color: #ffffff;
    font-size: 12px;
    font-weight: 100;
    width: 100%;
    text-align: center;
    line-height: 5px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    overflow: auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(40px);
    font-size: 14px;
    line-height: 14px;
}

.instructions {
    width: 80%;
}

.display_data {
    width: 80%;
}

.result {
    width: 70%;
}

.modal .entry {
    width: 40px;
    height: 40px;
}

.close_modal {
    background-color: rgb(240, 228, 66);
    border-radius: 5px;
    padding: 10px 15px 10px 15px;
    cursor: pointer;
    border: 0px;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

.dados {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.dados div {
    display: flex;
    width: 25%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}