:root {
	--primary-color: #000000;
	--text-color: #ffffff;
	--hover-color: #cccccc;
	--font-family: 'Courier New', monospace;
	--transition-speed: 0.3s;
  }
  
  /* Reset and Base Styles */
  * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	background-color: var(--primary-color);
	font-family: var(--font-family);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	color: var(--text-color);
  }
  
  /* Image Styles */
  .index-katti {
	width: 250px;
	height: 250px;
	margin-block: 20px;
	object-fit: contain;
  }

  
  /* Navigation and Links */
  .index-items {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
	width: 100%;
	max-width: 600px;
  }
  
  .index-list {
	width: 100%;
	text-align: center;
  }
  
  .index-list a {
	color: var(--text-color);
	text-decoration: none;
	font-size: 1.125rem;
	transition: all var(--transition-speed) ease;
	padding: 8px 16px;
	display: inline-block;
	position: relative;
  }
  
  .index-list a:hover {
	color: var(--hover-color);
	transform: translateY(-2px);
  }
  
  .index-list a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	bottom: 0;
	left: 50%;
	background-color: var(--hover-color);
	transition: all var(--transition-speed) ease;
  }
  
  .index-list a:hover::after {
	width: 100%;
	left: 0;
  }
  
  /* Modal Styles */
  .modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(3px);
  }
  
  .modal-content {
	background-color: var(--primary-color);
	color: var(--text-color);
	padding: 2rem;
	border: 2px solid #333;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	position: relative;
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  }
  
  .close-button {
	color: #aaa;
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: color var(--transition-speed) ease;
	padding: 5px;
	line-height: 1;
  }
  
  .close-button:hover {
	color: var(--text-color);
  }
  
  .modal-content h2 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.5rem;
  }
  
  .modal-content p {
	margin-bottom: 15px;
	line-height: 1.6;
	font-size: 1rem;
  }
  
  /* Media Queries */
  @media screen and (min-width: 768px) {
	.index-katti {
	  width: 300px;
	  height: 300px;
	}
  
	.index-list a {
	  font-size: 1.3rem;
	}
  
	.modal-content {
	  padding: 2.5rem;
	}
  
	.modal-content h2 {
	  font-size: 1.8rem;
	}
  
	.modal-content p {
	  font-size: 1.1rem;
	}
  }
  
  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
	* {
	  animation: none !important;
	  transition: none !important;
	}
  }
  
  /* Focus States */
  a:focus,
  button:focus {
	outline: 2px solid var(--hover-color);
	outline-offset: 4px;
  }
  
  /* Print Styles */
  @media print {
	.modal {
	  position: relative;
	  display: block;
	}
	
	.close-button {
	  display: none;
	}
  }
  


/* Add this to your CSS */
.snowflake {
    position: fixed;
    top: -10px;
    color: white;
    font-size: 1em;
    text-shadow: 0 0 1px #000;
    user-select: none;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.8;
}

.snowflake:nth-of-type(even) {
    color: #ccc;
}
