img, audio, video {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}


body {
      font-family: "Open Sans", sans-serif;
    }
    .font-fredoka {
      font-family: "Fredoka One", cursive;
    }
    
    /* Custom scrollbar for modern browsers */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #f85;
  border-radius: 4px;
  border: 2px solid orange;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: orangered;
}

/* Firefox scrollbar */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}