* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jetbrains Mono', monospace;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #202020;
    color: #000000;
    /* cursor: none; */
}
.container {
    max-width: 600px;
    padding: 20px;
    background: #2d2c2c;
    border-radius: 8px;
    text-align: center;
    color: #418b6f;
    animation: anim 2s linear infinite alternate;
}
.button {
    color: #93c47d;
    display: flex;
    left: 10px;
}
@keyframes anim {
    from {box-shadow: 0px 0px 20px #93c47d;}
    to {box-shadow: 0px 0px 35px #93c47d;}
}
footer {
    color: #cccccc;
    font-size: 0.9rem;
    position: absolute;
    bottom: 10px; 
    right: 10px;
}
h1 {
    font-size: 2.5rem;
    color: #93c47d;
    margin-bottom: 1rem;
}
p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #93c47d; 
    margin-bottom: 1rem;
}
img {
    width: 40px;
    height: 40px;
}
.cursor {
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: deepskyblue;
	mix-blend-mode: difference;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: width 0.3s, height 0.3s, background-color 0.3s;
	animation: glow 1s infinite alternate;
}
@keyframes glow {
	0% {
		box-shadow: 0 0 10px 5px #93c47d;
	}
	100% {
		box-shadow: 0 0 20px 10px #93c47d;
	}
}
.icon {
    position: relative;
    display: inline-block;
    margin: 1px;
}

.icon img,
.icon svg {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    cursor: pointer;
    z-index: 1;
}

.icon::after {
    content: attr(data-name);
    position: absolute;
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d2c2c;
    color: #93c47d;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 0 5px #93c47d;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999; /* Force tooltip above icon */
}

.icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}
