body {
    background-color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    transition: background-color 0.6s;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    user-select: none;
    cursor: none;
}

h1 {
    color: #333;
    font-size: 72px;
    text-shadow: 8px 8px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    transition: 0.2s;
    cursor: none;
}

h1:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}

#colorName {
    font-size: 24px;
    color: white;
    border: 3px solid pink;
    background-color: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 35px;
    margin: 20px 0;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
    box-shadow: 6px 6px 10px rgba(0,0,0,0.6);
    transition: 0.2s;
    cursor: none;
}

#colorName:hover {
    background-color: rgba(0,0,0,0.5);
    transform: scale(1.05);
}

#colorName:active {
    transform: scale(0.95);
}

#colorButton {
    background-color: rgba(0,0,0,0.3);
    color: white;
    border: 3px solid pink;
    padding: 15px 30px;
    font-size: 24px;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
    border-radius: 35px;
    cursor: none;
    box-shadow: 8px 8px 10px rgba(0,0,0,0.5);
    transition: background-color 0.6s, transform 0.2s;
}

#colorButton:hover {
    background-color: black !important;
    transform: scale(1.05);
}

#colorButton:active {
    transform: scale(0.95);
}

.fade {
    opacity: 0;
}

.particle {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFade 1s ease-out forwards;
}

@keyframes particleFade {
  0% { opacity: 1; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(0) translateY(20px); }
}

div {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
}

.links {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin: 0 3px 0 3px;
    padding: 3px;
    border-radius: 10px;
    transition: 0.2s;
}

.links:hover {
    transform: scale(1.1);
    background-color: whitesmoke;
    color: black;
    text-decoration: underline;
}


.links:active {
    transform: scale(0.95);
}