html,
body {
  min-height: 100vh;
}

body {
  background-image: url("../img/bgacron.jpeg"); /* Укажите путь к изображению */
  background-size: cover; /* Масштабирует изображение, покрывая экран целиком */
  background-position: center; /* Центрирует изображение относительно экрана */
  background-repeat: no-repeat; /* Изображение не повторяется */
  background-attachment: fixed; /* Фиксирует фон, предотвращая прокручивание фона */

  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card,
.list-group-item {
  background: transparent !important;
  border: 2px solid black;
  font-weight: 500;
}

.aside {
  height: 400px;
}

.main {
  height: 400px;
}

.d-flex {
  display: flex;
}

.task-title {
  font-weight: 600;
  padding-top: 5px;
}

.gray {
  color: #bdbdbd;
}

.task-title--done {
  text-decoration: line-through;
  color: #cdcdcd;
}

.task-item__buttons {
  display: flex;
  column-gap: 5px;
}

.notify-holder {
  height: 60px;
  margin-bottom: 20px;
}

.empty-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
}

.empty-list__title {
  font-style: 28px;
  margin-bottom: 15px;
  font-weight: 500;
}

.empty-list__icon {
  color: #42be2a;
}

.btn-action {
  background-color: #71ef64;

  padding: 8px 10px;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  transition: opacity 0.2s ease-in;

  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-action:hover {
  background-color: #a459ea;
}

.btn-action img {
  pointer-events: none;
}

.none {
  display: none !important;
}

.float-right {
  float: right;
}

.copyright {
  margin-top: 40px;
  font-size: 14px;
  color: gray;
  text-align: center;
  margin-bottom: 30px;
}
