.dark {
    background: rgb(41, 45, 62);
    color: #afb1b6;

    transition: all 0.9s ease-in-out;
}

.dark .circle2 {
    background-color: rgb(25, 26, 33);
    transition: all 0.9s ease-in-out;
}

.dark .rightContent h4 {
    color: #afb1b6;
}

.dark footer {
    background: rgb(25, 26, 33);
    /* border-top: 1px solid rgb(94, 160, 116); */
    transition: all 0.9s ease-in-out;
}

.dark .blogLink button{
    color: #afb1b6;
    transition: all 0.9s ease-in-out;
}

.dark body {
    overflow: hidden;
}

.dark .stars {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

.dark .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgb(170, 235, 255);
    border-radius: 50%;
    opacity: 0;
    animation: blink 0.5s infinite ease-in-out;
}

@keyframes blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}
