/* assets/styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: black;
    height: 10vh;
    width: 100vw;
    padding-top: 25px;
}

section {
    display: flex;
    height: 85vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    background-color: #333;
}

h1 {
    align-items: top;
    color: lightblue;
    padding-bottom: 20px;
}

h3 {
    align-items: top;
    color: #87cefa;
    padding-bottom: 20px;
}

#tela {
    border: 2px solid lightsalmon;
    box-shadow: 0px 0px 2px 1px lightsalmon;
    border-radius: 9px;
}

.letras {
    width: 31px; 
    text-align: center;
    border-bottom: 2px solid whitesmoke;
    color: white;
    padding: 2px;
    margin-left: 2px;
    margin-right: 2px;
}

#palavra {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    margin-top: 30px;
    color: coral;
}

#dica {
    margin: 30px;
    color: whitesmoke;
    font-size: 1.2em;
}

/* .b-botton {
    border-bottom: 2px solid #FFF;
    width: 40px;
    height: 40px;
} */

#result {
    color: #ffd700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    padding-bottom: 15px;
}

/* .lose {
    color: coral;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    padding-bottom: 15px;
} */

.p {
    width: 460px;
    height: 33px;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    margin: 30px;
}

.dbtn {
/*     display: grid;
    grid-template-columns: repeat(1, 1fr); */
    gap: 3px;
    padding-bottom: 15px;
}

#btnNovoJogo {
    margin: 3px;
    width: 160px;
    height: 33px;
    border: 1px solid #FFF;
    border-radius: 9px;
    color: darkorange;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    box-shadow: 0px 0px 2px 1px white;
}

#btnNovoJogo:hover {
    transform: scale(1.1);
    border: 2px solid gold;
    color: gold;
    box-shadow: 0px 0px 2px 1px white;
    cursor: pointer;
}

.input {
    margin: 3px;
    width: 160px;
    height: 33px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 9px;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    padding: 10px 15px;
    box-shadow: 0px 0px 2px 1px white;
}

.key-b {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 3px;
}

.key {
    width: 40px;
    height: 40px;
    margin: 3px;
    border: 1px solid #FFF;
    border-radius: 9px;
    color:darkorange;
    background-color: #252525;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    box-shadow: 0px 0px 2px 1px white;
}

.key:hover {
    transform: scale(1.1);
    border: 2px solid #ffd700;
    color: gold;
    box-shadow: 0px 0px 2px 1px white;
    cursor: pointer;
}

.key:disabled{
    cursor: not-allowed;
}



footer {
    flex-shrink: 0;
    background-color: #181818;
    color: white;
    padding: 10px;
    height: 5vh;
    width: 100vw;
    text-align: center;
}
