

html{
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

.layout {
  display: flex;

}

aside {
  max-width: 320px;
  width: 100%;
  padding: 1rem;
  flex-shrink: 0;
  top: 60px;
}

main {
  flex-grow: 1;
  overflow-y: auto;
  background-color: #fff;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

main::-webkit-scrollbar {
  display: none;
}

a {
  color: grey !important;
}

a:hover {
  color: black !important;
}
/* .logoimg {
  animation: rotate 5s infinite linear alternate;
} */

@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.nav-link.active {
  color: blue !important;
}

@media (max-width: 992px) {
  aside {
    display: none;
  }

  .layout {
    flex-direction: column;
    overflow: visible;
  }

  main {
    height: auto;
    overflow: visible;
  }
}
a.nav-link {
  border-radius: 10px;
}
a.nav-link:hover {
  background-color: rgba(128, 128, 128, 0.373);
}

@media (min-width: 992px) {
  .offcanvas-toggle {
    display: none;
  }
}
