/* NAME GAME STYLE SHEET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#container{
    width: 100vw;
    height: 100vh;
    background-color: antiquewhite;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.letter{
    border: 1px solid #05f1e6;
    border-radius: 15px;
    width: 100px;
    height: 200px;
    /* margin: 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: black;
    font-weight: bold;
}

#form{
    position: absolute;
    bottom: 10%;
    text-align: center;
    color: black;
    font-weight: bold;
}

#form input{
    padding: 10px;
    width: 50px;
    text-align: center;
    color: black;
    background-color: transparent;
    font-weight: bold;
    outline: none;
    text-transform: uppercase;
}

#form p{
    margin-bottom: 15px;
}

#form .btn{
    padding: 10px;
    color: black;
    background-color: transparent;

}

p.warning, p.error, p.success{
    position: absolute;
    text-align: center;
    padding: 15px;
    color: black;
    font-weight: bold;
    margin-bottom: 10px;
    border-radius: 10px;
    /* top: 40px; */
}

p.warning{
    background-color: gold;
}

p.error{
    background-color: tomato;
}

p.success{
    background-color: rgb(9, 88, 9);
}

#crumble {
    position: absolute;
    top: 10px;
    color: black;
}