	header {
	/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0); */	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	}
	
/* 	.logo {
	font-size: 30px;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	} */
	
  .hidden-hint {
    display: none;
}

  .spin-image {
  /* width: 250px; */ /* Adjust size as needed */
  /* height: 200px; */ /* Adjust size as needed */
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

	nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
	}

	nav ul {
	list-style: none;
	display: flex;
	font-size: 20px;
	}

	nav ul li a {
	display: block;
	padding: 5px;
	margin: 0 5px;
	color: #333;
	text-decoration: none;
	}

	nav ul li a:hover {
	background-color: #005F6B;
	color: #fff;
	border-radius: 5px;
	transition: background-color 0.2s ease-in-out;
	}
	
    body {
    background-image: url('/assets/img/bg-3.png');
	  overflow: hidden;
	  background-size: cover;
	  background-repeat: no-repeat;
    background-attachment: fixed;
	  background-position: center;
	  display: flex;
	  flex-direction: column;
    justify-content: center;
    align-items: center;
	  margin: 0;
	  height: 90vh;
    }
	
    .container {
      text-align: center;
      color: black;
    }

    .buttons-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Create 4 columns */
    gap: 10px; /* Add some space between buttons */
    }
	
	.btn a {
    color: black;
    font-size: 14px;
	  cursor: pointer;
    border-radius: 8px;
    }
	
   .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(128,128,128,0);
    color: black;
    text-align: center;
    }

   .btn {
   color: black;
   font-size: 16px;
   cursor: pointer;
   border-radius: 8px;  
   }

   .btn:hover a {
   color: #005F6B;
    }
	 li  {
     color: black;
   }

   .news-box {
   background-color: rgba(255, 255, 255, 0.85);
   color: #000;
   padding: 10px 15px;
   border: 2px solid #007BFF;
   border-radius: 8px;
   margin: 10px auto;
   width: 90%;
   max-width: 800px;
   font-size: 16px;
   font-family: Arial, sans-serif;
   text-align: center;
   box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
  }

   ul.lab-rules {
     text-align: left; /* Align bullet points to the left */
     padding-left: 200; /* Remove default padding */
     font-size: 18px;
    }
    
   ul.lab-rules li {
     list-style-type: disc; /* Use bullet points */
     margin-left: 1.5em; /* Space between bullet point and content */
    }

  @media only screen and (max-width: 620px) {
    /* For mobile phones: */
    .menu, .main, .right {
      width: 100%;
    }
   }
