@font-face {
    font-family: MontserratAlternates;
    src: url(MontserratAlternates-Regular.ttf);
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: MontserratAlternates, serif; 

}




body{
    display: flex;
}




.titulo {
    text-shadow: 0 0 2px black;
}




.contenedor {
    width: 30%;
    height: auto;
    margin: auto;
    margin-top: 5%;
    margin-bottom: 2%;
    padding: 2% 2% 2% 1%;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 1px 0.5px white;

    display: grid;
    
}





.elemento {
    border-top: 2px solid #f6d8e2;
    margin-top: 2%;
    padding: 2% 1%;
    display: grid;
    grid-template: 1fr / 1fr auto auto auto ;
    gap: 5px;
    justify-content: space-around;

}




.elemento:hover {
    background-color: #f7c6e7;
    transition: 0.5s;
}



.elemento button {
    height: 30px;
    width: 25px;
    font-size: 1.3rem;
    color: blueviolet;
    background-color: white ;
    border: 1px solid lightblue;
    font-weight: bold;

}



.elemento button:hover {
    background-color: blueviolet;
    color: white;
    cursor: pointer;
    transition: 0.5s;

}




#tarea {
    font-size: 1.2rem;
    border: none;
    margin-left: 5px;
    padding: 0 3%;
    border-radius: 3px;
    background-color: white;
}




#btnNuevo {
    margin: 2% 0;
    padding: 1%;
    background-color: white;
    border: 2px solid violet;
    font-size: 1.2rem;
}




#btnNuevo:hover {
    transition: 0.5s;
    background-color: violet;
}





.hecho{
    text-decoration: line-through;
    color: gray;
}




img{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}