body{
    background-color: #eee;
}

/* BTN */
.btn-principal{
    height: 100px;
    width: 300px;
    left: 561px;
    top: 402px;
    border: none;
    border-radius: 24px;
    padding: 24px;
    background-color: #0A3871;
    font-size: 18px;
    color: #eee;
}
.btn-principal-small{
    height: 50px;
    width: 300px;
    left: 561px;
    top: 402px;
    border-radius: 24px;
    padding: 15px;
    background-color: #0A3871;
    font-size: 18px;
    color: #eee;
}
.btn-secundario{
    height: 50px;
    width: 250px;
    left: 579px;
    top: 554px;
    border-radius: 24px;
    padding: 15px;
    border: 1px solid #0A3871;
    color: #0A3871;
    font-size: 16px;
}

.invisible{
    display: none;
}

header{
    margin: 5px 0;
    text-align: center;
}

h1{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 0 20px;
}

/* TABLERO */
main section{
    text-align: center;
}
.tablero{
    margin-left: auto;
    margin-right: auto;
    /* margin-bottom: 30px; */
}

.espacios-letras{
    height: 40px;
    text-align: center;
    margin-bottom: 16px;
}
.espacios-letras div{
    text-transform: uppercase;
    display: inline-block;
    font-size: 32px;
    font-weight: bold;
    margin: 10px 15px;
    width: 30px;
}
.espacios-letras p{
    

}
.espacios-letras div::before{
    content: '';
    position: absolute;
    background-color: #0A3871;
    bottom: 0;
    width: 30px;
    height: 3px;
    bottom: 110px;
    margin-left: -15px;
}
#letras-incorrectas{
    height: 40px;
    text-align: center;
    margin-bottom: 10px;
    position: absolute;
    top: 20%;
}
#letras-incorrectas p{
    text-transform: uppercase;
    display: block;
    font-size: 32px;
    font-weight: bold;
    margin: 10px 15px;
    width: 30px;
}

/* .espacios-letras p{
    margin-bottom: 5px;
} */
.section-input{
    display: flex;
    flex-direction: column;
    align-items: center;

}
.input{
    height: 48px;
    width: 299px;
    padding-left: 15px;
    border: none;
    border-radius: 24px;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
}
.input::placeholder{
    color: #0A3871;
}

.input-error{
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 350px;
    text-align: center;
    color: red;
    font-size: 32px;
    font-weight: bold;
}

.seccion-column{
    /* height: 70vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.seccion-row{
    /* height: 20vh; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* footer */
footer{
    text-align: center;
    margin: 30px 0;
    font-size: 18px;
}
a{
    text-decoration: none;
    color: black;
    transition: all .5s;
}
a:hover{
    color:#0A3871;
    font-size: 20px;
    font-weight: bold;
}