@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&family=Ms+Madi&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Agu+Display&family=Josefin+Sans:wght@500&family=Ms+Madi&family=Playwrite+PT+Guides&display=swap');

body{
    margin: 0;
    padding: 0;
    background-color: #fa4646;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    font-family: "Ms Madi", cursive;
}

.tarjeta{
    background-image: url("../Imagenes/Lista.png");
    background-size: contain;
    width: 70%;
    height: 75%;
    box-shadow: 10px 10px 14px -3px rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.tarjeta h1{
    color: #fa4647;
    font-size: 4rem;
    margin: 0;
    font-weight: bold;
    line-height: normal;
}

.lista{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 75%;
    height: 35%;
    margin-bottom: 1%;
    overflow: auto;
    overflow-x: hidden;
    scrollbar-base-color: gold;
    scrollbar-width: thin;
    
}

.item{
    background-color: whitesmoke;
    width: 100%;
    height: 3.5rem;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    
    padding-left: 2%;

    margin-bottom: 2%;
}

.cuadrado{
    width: 1.2rem;
    height: 1.2rem;
    border: 3px solid #c22929;
    margin-right: 1%;
}

.item input[type="text"]{
    width: 90%;
    border: none;
    font-size: 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: normal;
    text-align: left;
    height: fit-content;

}

.boton{
	background-color:#c22929;
	border-radius: 4px;
    border: none;
	color: #ffffff;
	font-size: 30px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    text-align: center;
    font-family: "Ms Madi", cursive;
    width: 100px;
    line-height: normal;
}

.boton:hover{
    cursor: pointer;
    background-color: #ffffff;
    color: #c22929;
    transition: 0.3s ease-in-out;
}

#add{
    width: 40px;
    height: 40px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 2%;
    line-height: normal;
}

#add2{
    display: none;
}

#mensaje-enviado{
    display: none;
    font-weight: bold;
    margin-top: 8%;
}

#volver{
    display: none;
    width: 200px;
    margin-top: 5%;
}


@media (max-width: 700px)
{
    .tarjeta{
        width: 100%;
        height: 100%;
    }

    .lista{
        border: 4px solid #b02f26;
        border-radius: 10px;
        padding: 1%;
    }

    .item input[type="text"]{
        font-size: 1rem;
    }

    #add{
        display: none;
    }

    #add2{
        display: block;
        width: 40px;
        height: 40px;
        font-family: Arial, Helvetica, sans-serif;
        margin-top: 2%;
        line-height: normal;
    }

    #pedir
    {
        position: fixed;
        bottom: 10%;
    }

    #mensaje-enviado{
        padding: 0 2%;
        text-align: center;
    }

}