
*{
    font-family: 'Courier New', Courier, monospace;
}

 body {
    background-image: url('fondo.avif');
    background-size: cover; /* Esto hace que la imagen cubra toda la pantalla */
    background-repeat: no-repeat; /* Esto evita que la imagen se repita */
    background-position: center; /* Esto centra la imagen */
    background-attachment: fixed; /* Esto hace que la imagen se mantenga fija al hacer scroll */
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

#contenedor{
    text-align: center;
    width: 150vh;
    height: auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
}

#titulo{
    font-size: 2rem;
    font-weight: bold;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    text-shadow:2px 2px 2px lightgray;
}

ul{
    padding: 0%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

li{
    display: flex;
    justify-content: space-between;
    width: 95%;
    list-style: none;
    padding-left: 0.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid #F84FD7;
}

li input{
    width: 80%;
    margin-right: 0.5rem;
    border: 0;
    font-size: 1.5rem;
}

li:hover{
    background: #F7C6E7;
}

li:hover input{
    background: #F7C6E7;
}

li input:focus{
    background: white;
}

li button{
    border: 1px solid #B5D4DF;
    background: white;
    padding: 0.5rem;
    color: #635AF7;
    margin-right: 0.5rem;
}

li button:hover{
    background: #635AF7;
    color: white;
}

li div{
    text-align: center;
    width: 20%;
    margin-right: 0.4rem;
}

#agregar{
    width: 95%;
    border: 1px solid #F84FD7;
    padding: 0.5rem;
    font-size: 1.5rem;
    font-weight: bolder;
}

#agregar:hover{
    background-color: #F7C6E7;
    color: white;
}