body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #0a1f44;
    text-align: center;
}

h1 {
    color: whitesmoke;
}

.input {
    width: 450px;
    height: 50px;
    margin: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    border-radius: 10px;
    background-color: white;
    font-size: 18px;
}

.boton-agregar {

    width: 50px;
    height: 50px;
    margin: 5px;
    border: none;
    border-radius: 10px;
    background-color: rgb(255, 6, 46);
    color: whitesmoke;

}

.container {

    padding-top: 10px;
    border: whitesmoke;
    border-radius: 10px;

}

.boton-agregar:hover,
.boton-remover:hover {

    background-color: rgba(255, 6, 48, 0.5);

}

.boton-editar:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.item-input {

    height: 50px;
    width: 450px;
    padding: 0px 20px;
    border: 1px solid white;
    border-radius: 10px;
    font-size: 18px;
    color: whitesmoke;
    background: none;

}

.item {

    margin-bottom: 10px;
}

.boton-editar {

    height: 50px;
    width: 50px;
    margin: 0px 5px;
    border: none;
    background: none;
    color: #62d0ff;
    font-size: 1.4rem;
    font-family: sans-serif;
    border-radius: 10px;

}

.boton-remover {

    height: 50px;
    width: 50px;
    margin: 0px 5px;
    border: none;
    border-radius: 10px;
    background-color: rgb(255, 6, 46);
    font-size: 20px;
    color: whitesmoke;

}