#jump {
  margin-left: 8px;
}

a {
  color: initial;
  text-decoration: none;
}

.m-dark a {
  color: #ffffff;
}

/************************************************/

.notification {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  background: #014280;
  padding: 5px;
}

.fa-xmark-large:hover {
  color: #ff0000;
  cursor: pointer;
}

main {
  margin-left: 10px;
}

.logo__display {
  width: 22rem;
}

@media (max-width: 363px) {
  .logo__display {
    width: 15rem;
  }
}

.sun {
  display: none;
}

.right {
  float: right;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.fa-spinner-third {
  animation: rotate infinite 1s linear;
}

/************************************************/

.fa-xmark-large {
  color: #ff0000;
}

.cards {
  justify-content: space-around;
  display: flex;
}

.card {
  margin: 0 10px;
  background: #f0f0f0;
  width: 300px;
  font-size: 14px;
  padding: 10px;
  border-radius: 20px;
}

@media (max-width: 804px) {
  .cards {
    flex-direction: column;
    justify-content: space-between;
  }
  .card {
    margin: 10px 0;
  }
}

#settings ul {
  list-style-type: none;
  padding-left: 0;
}

#settings ul ul {
  padding-left: 20px;
}

.m-dark .card {
  background: #2e2e2e;
}
