* {
  font-family: "Roboto Slab", serif;
}

body {
  height: 100%;
  margin: 0;
  background-image: url(../images/fondo.png);
  background-size: 100% 100%;
  background-position: center;
  background-attachment: fixed;
}

.todo {
  min-height: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 0 30px;
}

.header-todo {
  box-sizing: border-box;
  background-color: #f8f9fb;
  min-height: 150px;
  min-width: 800px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-direction: column;
  border: #0f4c81 solid 2px;
}

h1 {
  font-family: "Roboto Slab", serif;
  color: #333333;
  /*text-decoration: underline;*/
  border-bottom: 4px solid #333333;
  font-size: 45px;
  font-weight: 400;
  margin: 20px 0;
}

.form-todo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.input-todo {
  min-width: 315px;
  min-height: 40px;
  border: 3px solid #333;
  border-radius: 7px;
  padding-left: 10px;
  font-size: 18px;
}

.btn-todo {
  width: 100px;
  min-height: 48px;
  text-align: center;
  text-decoration: none;
  background-color: #f8f9fb;
  border: 3px solid #0f4c81;
  border-radius: 7px;
  color: #333;
  margin-left: 5px;
  font-size: 18px;
}

.btn-todo:hover {
  background-color: #0f4c81;
  color: #f8f9fb;
  border-color: #d66262;
}

.body-todo {
  background-color: #f8f9fb;
  margin-top: 20px;
  min-width: 800px;
  min-height: 30px;
  box-sizing: border-box;
  border-radius: 10px;
  border: #0f4c81 solid 2px;
}

.list-todo {
  display: flex;
  justify-content: flex-start;
  flex-flow: column wrap;
  padding: 0;
}

.list-element {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  background-color: #f8f9fb;
  border-radius: 7px;
  margin: 7px 10px 7px;
  padding: 2px 5px 2px 20px;
  border: 1px solid #0f4c81;
}

.paragraph-elementList {
  font-size: 18px;
  margin: 10px 0;
}

.container-buttons {
  min-width: 70px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

/* Start button check item list */
.btn-check {
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  padding: 0;
  border: none;

  background-size: 25px 25px;
  cursor: pointer;
}

.check-grey {
  background-image: url(/svg/check-grey.svg);
}
.check-grey:hover {
  background-image: url(/svg/check-green.svg);
}

.check-green {
  background-image: url(/svg/check-green.svg);
}
.check-green:hover {
  background-image: url(/svg/check-grey.svg);
}

.check {
  text-decoration: line-through;
  color: #999;
}
/* End button check */

/* Start button remove */
.btn-remove {
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  padding: 0;
  border: none;
  background-size: 25px 25px;
  cursor: pointer;
}

.remove {
  background-image: url(/svg/cancelar-grey.svg);
}
.remove:hover {
  background-image: url(/svg/cancelar-red.svg);
}
/* End button remove */

@media screen and (max-width: 480px) {
}
