
html {
  height: 100%;
  width: 100%;
}

@keyframes rgbBorder {
    0% { box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.7); }
    33% { box-shadow: 0 0 20px 5px rgba(0, 255, 0, 0.7); }
    66% { box-shadow: 0 0 20px 5px rgba(0, 0, 255, 0.7); }
    100% { box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.7); }
}

.rgb-animation {
    animation: rgbBorder 6s linear infinite;
}

.bg-blurry {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(15, 23, 42, 0.7);
}

.profile-image {
    clip-path: circle(50% at 50% 50%);
}

.social-btn:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.glow-text {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
