  body, h1, h2, h3, h4, h5, h6 {
    font-family:'Times New Roman', Times, serif;
	background-image: url('background/NEW_BACKGROUND.jpg');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-color: #000000;
  }
  
/* unvisited link */
  a:link {
	text-decoration:none;
	color: #000000;
  }
	
/* mouse over link */
  a:hover {
    text-decoration:underline;
  }

  *:focus {
    box-shadow: none !important;
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .example::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar */
  .example {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  /* Hide scrollbar */
  .scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  .spinner2 {
    height: 50px; /* Or desired height */
    position: relative; /* Important for centering the image */
  }

  .spinner2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .spinner2 {
    animation: spin 8s linear infinite; /* Adjust duration and speed as needed */
  }
  
  .spinner {
    height: 200px; /* Or desired height */
    position: relative; /* Important for centering the image */
  }

  .spinner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .spinner {
    animation: spin 8s linear infinite; /* Adjust duration and speed as needed */
  }

    @keyframes spin {
  0% {
    transform: rotate(0deg); /* Start with no rotation */
  }
  100% {
    transform: rotate(360deg); /* Rotate a full circle */
  }
  }