.no-drag {
	-ms-user-select: none; 
	-moz-user-select: -moz-none; 
	-webkit-user-select: none; 
	-khtml-user-select: none; 
	user-select:none;
}

@font-face {
    font-family: 'cookierun';
    src: url('fonts/CookieRun Regular.otf') format('truetype');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #0f0f0f;
	color: white;
	font-family: 'cookierun'; 
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.typing-container {
	font-size: 1.5rem;
	color: white;
	height: 2rem;
	white-space: nowrap;
	overflow: hidden;
	border-right: 2px solid white;
	animation: blink 0.75s step-end infinite;
	margin-top: 1.5rem;
}

@keyframes blink {
	50% {
	border-color: transparent;
	}
}

.location {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
	color: #b0b6b7;
}

.icons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 5rem;
}

.icons a {
	color: white;
	font-size: 1.75rem;
	transition: color 0.3s;
}

.icons a:hover {
	color: #999;
}

@media (max-width: 600px) {
	h1 {
	font-size: 2rem;
	}
	.icons a {
	font-size: 1.5rem;
	}
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip::after {
  content: attr(data-label);
  position: absolute;
  bottom: 125%; /* place above icon */
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
}

.tooltip:hover::after {
  opacity: 1;
}

.responsive {
  width: 100%;
  max-width: 400px;
  height: auto;
}