

                        

body {




   @import url('https://fonts.cdnfonts.com/css/tree-ghost'); 
  
  font-family: 'Tree Ghost', sans-serif;
  font-size: 25px;
  font-weight: 100;
  font-style: normal;


   .no-underline {
  text-decoration: none;
}

  a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}
    
    
    
    
    
.multi-glow:hover {
  box-shadow: 
    0 0 10px #ff0080,  /* Inner pink */
    0 0 20px #7928ca,  /* Middle purple */
    0 0 40px #4299e1;  /* Outer blue */
}
    
    
    
    
    

    
.image-glow-link img {
  width: 453px; /* Adjust size as needed */
  transition: filter 0.3s ease; /* Smooth transition for the glow */
}

.image-glow-link:hover img {
  /* Syntax: drop-shadow(horizontal vertical blur color) */
  filter: drop-shadow(0 0 10px #00d4ff); 
}

    
.image-glow-link img {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.image-glow-link:hover img {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  transform: scale(1.02); /* Adds a slight "zoom" effect */
}






 /* PLACEHOLDERS */
.holographic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #000;
}

.holographic-card {
  width: 303px;
  height: 179px;
  background: #FDE188;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.holographic-card h2 {
  color: #0ff;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.holographic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 10%, 
    rgba(0,255,255,0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.holographic-card:hover::before {
  opacity: 14;
  transform: rotate(-45deg) translateY(100%);
}








   /* Menu Grid */
* {
    margin:  0;
    padding: 0;
    box-sizing: border-box;
}

 {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e2adf7;
    font color: #FDE188;
    font-family: 'Tree Ghost', sans-serif;
    font-size: 25px;
}

.container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    padding: 1rem;
    max-width: 800px;
}

.cursor-box {
    width: 96px;
    height: 55px;
    background-color: #e2adf7;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.cursor-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(226, 173, 247,0.1), transparent);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}

.cursor-box:hover::before {
    top: 100%;
    left: 100%;
}

/* Unique styles for each cursor type */
.pointer {
    cursor: pointer;
    background: linear-gradient(145deg, #529EC3, #383838);
    border: 2px solid #F7BFC0;
    font-family: 'Tree Ghost', sans-serif;
    font-size: 25px;
}
.pointer:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 15px #ebe49850;
}

.help {
    cursor: help;
    background: linear-gradient(145deg, #529EC3, #383838);
    border: 2px solid #F7BFC0;
    font-family: 'Tree Ghost', sans-serif;
    font-size: 25px;
}
.help:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 5px 15px #ebe49850;
}



/* Menu Animations */
@keyframes pulse {
    0% { transform: scale(1.05); }
    50% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1.05); }
    25% { transform: translateX(-5px) scale(1.05); }
    75% { transform: translateX(5px) scale(1.05); }
}

@keyframes moveAround {
    0% { transform: translate(0, 0) scale(1.05); }
    25% { transform: translate(5px, -5px) scale(1.05); }
    50% { transform: translate(0, 0) scale(1.05); }
    75% { transform: translate(-5px, 5px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1.05); }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: repeat(3, 1fr);
    }
    .cursor-box {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .cursor-box {
        width: 100px;
        height: 100px;
    }
}













/* FACEBOOK ICON */
/* Style all font awesome icons */
.fa-facebook {
  padding: 10px; /* Space around the icon */
  font-size: 24px; /* Icon size */
  width: 44px; /* Icon width */
  text-align: center; /* Center the icon */
  text-decoration: none; /* Remove default link underline */
  background-color: #FDE188; /* Facebook brand color */
  color: white; /* Icon color */
  border-radius: 100%; /* Make it a circle */
}

/* Add a hover effect */
.fa-facebook:hover {
  background-color: #FFFFFF; /* Slightly different color on hover */
  color: pink; /* Icon color */
}







/* Designed by MartyJ */


