.footer{
  width: 100%;
  height: 60px;
  border-radius: 16px;
  border: 1px solid var(--dark-color-10);
  background-color: var(--dark-color-60);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;

  a{
    font-family: "Geist", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--white-color-70);
    width: 64px;
    text-align: left;
  }

  .view-all {
    width: fit-content;
    height: 36px;
    border-radius: 8px;
    padding: 8px 18px;
    font-family: "Geist", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-pink-90);
    background: none;
    transition: all 0.2s ease-in-out;
    display: flex;
    gap: 8px;
    text-decoration: none;
  }

  .view-all:hover {
    background-color: var(--dark-pink-10);
    transition: all 0.2s ease-in-out;
  }

  .clock {
    font-family: "Geist", monospace;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color-70);
    width: 64px;
    text-align: left;
    letter-spacing: 0.5px;
  }
}