@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.container {
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-attachment: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.mainHeader {
  font-family: fantasy;
  text-transform: uppercase;
}

.mainHeader::before {
  content: "wg dr Dąbrowskiej";
  position: absolute;
  width: 50%;
  height: 5%;
  font-size: 15px;
  text-transform: none;
  top: 50px;
}

.stretch {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.introduction {
  font-weight: bold;
  line-height: 1.5;
  text-align: justify;
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
}

.link {
  color: #093c5a;
  font-family: 'Pacifico', cursive;
}

.btn-link {
  font-weight: bold;
  color: #117a8b;
}

.img-fluid {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}

.shoppingListHeader {
  font-size: 15px;
  background-color: #fff;
  padding: 5px;
  border-radius: 3px;
}

.shoppingList {
  list-style: none;
  padding: 0;
}

.notDisplay {
  display: none;
}

#list {
  font-size: 18px;
  background-color: #fff;
  padding: 3px;
  text-align: center;
  border-radius: 3px;
}

.listItem {
  background-color: #eee;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 20px;
  cursor: pointer;
}

.listItem:nth-child(even) {
  background-color: #ddd;
}

.listItem:hover {
  background-color: #bbb;
}

.checkedListItem {
  text-decoration: line-through;
}

.footer {
  text-align: center;
  font-family: 'Pacifico', cursive;
}

.form {
  margin-bottom: 15px;
}

.form__header {
  background-color: #fff;
  margin: 0 0 2px;
  padding: 20px;
  font-size: 22px;
  font-family: 'Pacifico', cursive;
}

.form__element {
  background-color: #fff;
  margin: 0;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form__item {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}

@media (max-width: 767px) {
  .form__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 8px;
    margin-bottom: 10px;
  }
}

.form__button {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  background-color: teal;
  color: #fff;
  padding: 13px;
  border: unset;
  cursor: pointer;
}

@media (max-width: 767px) {
  .form__button {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 10px;
  }
}

.taskList__header {
  background-color: #fff;
  margin: 0 0 2px;
  padding: 20px;
  font-family: 'Pacifico', cursive;
}

.taskList__subheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.taskList__element {
  background-color: #fff;
  min-height: 70px;
  margin: 0 0 20px;
  padding: 20px;
  list-style: none;
}

.taskList__item {
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.taskList__itemCheck {
  background-color: green;
  width: 30px;
  height: 30px;
  border: none;
  margin: 10px;
  color: #fff;
  font-weight: bold;
}

.taskList__itemDelete {
  background-color: red;
  width: 30px;
  height: 30px;
  border: none;
  margin: 10px;
  justify-self: flex-end;
  color: #fff;
}

.icon-trash-empty::before {
  margin: auto;
}

.taskList__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.taskList__text--lineThrough {
  text-decoration: line-through;
}
/*# sourceMappingURL=style.css.map */