body {
    padding-top: 70px;
}

::-webkit-scrollbar {
    width: 0.6vw;
    height: 0.6vw;
}

::-webkit-scrollbar-track {
    border-radius: 10em;
}

::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 10em;
    position: absolute;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #666;
    border-radius: 10em;
}

/* Hide scrollbar on mobile and tablet */
@media screen and (max-width: 1024px) {
    /* For WebKit browsers (Chrome, Safari, Edge) */
    ::-webkit-scrollbar {
        display: none;
    }

    /* For Firefox */
    body, * {
        scrollbar-width: none; /* hides scrollbar */
        -ms-overflow-style: none; /* IE and Edge */
    }
}

.icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.navbar-logo {
    max-height: 50px;
    max-width: 250px;
    height: auto;
    width: auto;
    object-fit: contain;
}

@media all and (display-mode: standalone) {
  footer {
    display: none;
  }
}

@media all and (display-mode: minimal-ui) {
  footer {
    display: none;
  }
}

