* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    color: #333;
}

a {
    text-decoration: none;
    color: currentColor;
}

h2 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    margin-bottom: 1em;
}

button {
    border: none;
    border-radius: 10px;
    background-color: #06113C;
    color: #FF8C32;
    padding: 5px;
    font-weight: 600;
    width: 180px;
}

textarea {
    resize: none;
    width: 200px;
    height: 65px;
    /* background: none; */
    /* border: none; */
    outline: none;
    font-family: inherit;
    padding: 1em;
    text-align: center;
    font-size: 1.2em;
}

#palabra-a-descubrir {
    opacity: .4;
    letter-spacing: 1px;
}

#input-vacio {
    width: 0px;
    height: 0px;
    background: none;
    color: transparent;
    border: none;
    outline: none;
    text-decoration: none;
}

.hidden {
    opacity: 0.1;  /* Poner en 0! */
    position: absolute;
    display: none;
}

body {
    font-size: 16px;
    background: #EEEEEE;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #DDDDDD, #EEEEEE);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #DDDDDD, #EEEEEE); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-attachment: fixed;
}

.logo a svg {
    width: 100%;
    margin: 1em auto;
}

.container-principal, footer {
    margin: 0 auto;
    min-width: 300px;
    max-width: 1200px;
    height: auto;
}

/* INICIO */

section {
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #333;
    background-color: antiquewhite;
    border-radius: 10px;
    min-width: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 10px;
}

/* JUEGO */

.container-palabras p {
    display: inline;
}

.spancito {
    margin: 0 3px;
    text-decoration: underline;
}


#modal-error {
    font-weight: 700;
    color: #af0606;
}

#modal-exito {
    font-weight: 700;
    color: #188c17;
}

footer {
    margin-top: 1em;
}

footer p {
    text-align: center;
}

footer p svg {
    width: 30px;
    transform: translate(0px, 8px);
}