@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.theme-dark {
  background-color: rgb(17, 18, 23);
  color: rgb(204, 204, 220);
}

.p-card .p-card-body {
  padding: 0.2rem 0.2rem !important;
}

.p-card .p-card-content {
  padding: 0 0 !important;
}

a {
  cursor: pointer;
}

.home h1 {
  margin-bottom: 10px !important;
}

.home h5 {
  /* margin-bottom: 10px !important; */
  margin-top: 10px !important;
}