@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single:wght@100..900&family=Quicksand:wght@300..700&display=swap');

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

html{
    font-size:62.5%;
}

body{
    background-image:url("../../assets/img/2-cuadricula-negra.jpg");
}

.container{
    height:100vh;
    display:flex;
    justify-content: center;
    align-items:center;
}

.container__word{
    width:45rem;
    background-color: #E9E3DF;
    padding:5rem 2rem;
    border-radius:1rem;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:justify;
}

.titulo-palindromo{
    margin:0px 0px 2rem 0px;
    font-family: "Bitcount Prop Single", system-ui;
    font-size:5rem;
    color:#c86028;
}

.definicion-palindromos{
    font-size:20px;
    margin-bottom:20px;
}

.word{
    width:70%;
    border:none;
    border-radius:5px;
    outline:none;
    border-bottom: 0.2rem solid #c86028;
    padding:1rem 0.5rem;
    font-size:1.6rem;
    margin:3rem 0px 3rem 0px;
}

.btn{
    width: 25%;
    padding: 1.5rem 2rem;
    border:none;
    outline:none;
    border-radius:0.5rem;
    color: black;
    background-color:#c86028;
    cursor:pointer;
    transition:1s;
}

.btn:hover{
    transform:scale(1.1);
    background-color:rgb(181, 181, 181);
    color:#c86028;
    border:1px solid black;
    font-size:15px;
    font-weight: bold;
}


.btn:active{
    transform: scale(.98);
}

.resultado{
    margin-top:3rem;
    text-align: center;
    font-size:2rem;
    font-weight: bold;
    color: gray;
}

.boton-volver{
    margin:3rem 0px 10px 0px;
    border-radius:10px;
    padding:15px;
    background-color:#c86028;
    text-align:center;
    list-style:none;
    cursor:pointer;
    transition:1s;
    font-size:20px;

    display:flex;
    flex-direction:column;
}

.boton-volver:hover{
    transform:scale(1.1);
    background-color:rgb(181, 181, 181);
    color:#c86028;
    border:1px solid black;
    font-size:25px;
    font-weight: bold;
}

.boton-volver a{
    text-decoration:none;
    color:black;
    font-size:15px;
}

.boton-volver img{
    width:70px;
    height:50px;
}