/* ============================ footer ============================ */
footer {
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: 40px;
  left: 0;
  align-items: center;
  height: 60px;
  /* margin-bottom: 20px; */
  background-color: var(--dark-gray);
  animation: paused;
  padding: 0 1rem;
}

footer div:first-child {
    text-align: center;
}


footer a{
color: var(--light-gray) !important;
}


/* ============================ scripts ============================ */

#scripts,
#aside_menu {
  padding: 0px;
  margin: 0px;
}

/* ============================ topup ============================ */

.topup {
  align-items: end;
  font-size: 50px;
  font-weight: 900;
  color: var(--green);
  text-decoration: none;
  /* animation: topup 5s linear infinite; */
  animation: skills 5s linear infinite;
}

/* ============================ @media ============================ */

@media (max-width: 992px) {
  footer {
    margin-left: 0;
  }
  footer {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  footer {
    font-size: 14px;
    margin-bottom: 4rem;
  }
  .topup {
    font-size: 30px;
  }
}

@media (max-width: 580px) {
  footer {
    font-size: 12px;
    margin-bottom: 6rem;
  }
  .topup {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  footer {
    font-size: 10px;
    margin-bottom: 7rem;
  }
}

@media (max-width: 320px) {
}