#myImage  {    filter:brightness(100%) saturation(100%) contrast(100%) opacity(75%);width: 235px; height: 145px; margin-right: -105px; display: block; margin: auto auto auto auto ; border: solid #555555 3px; z-index: 200; border-radius: 50px;

    
          }




#marquee {
  display:block;
  width: 175px;
  margin: auto auto auto auto;

  overflow: hidden;
  white-space: nowrap;
}
#marquee span {
  display: inline-block; font-style: italic;
  font-size: 15px;font-family: Arial ,Helvetica,sans-serif;
  position: relative; color:#050202;
  left: 100%;background-color: #FFCC99;border-radius:5px;

  animation: marquee 8s linear infinite;

}



#marquee:hover span {
  animation-play-state: paused;
}

#marquee span:nth-child(1) {
  animation-delay: 0s;
}
#marquee span:nth-child(2) {
  animation-delay: 0.8s;
}
#marquee span:nth-child(3) {
  animation-delay: 1.6s;
}
#marquee span:nth-child(4) {
  animation-delay: 2.4s;
}
#marquee span:nth-child(5) {
  animation-delay: 3.2s;
}

@keyframes marquee {
  0%   { left: 100%; }
  100% { left: -100%; }
}


#timeMessage  {  
 font-family: sans-serif;   font-size: 20px;  font-style: italic; font-weight: bold; margin-left: 110px; text-decoration:underline #FF0026;
} 


/* Blinking effect */
@keyframes blinker {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

.blink {
  animation: blinker 1.5s linear infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes glowBlink {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 4px cyan); }
  50%      { opacity: 0.6; filter: drop-shadow(0 0 12px magenta); }
}
.glow-blink {
  animation: glowBlink 2s ease-in-out infinite;
}



#kroonImage  {  width: 50px;  height: 50px;filter: brightness(105%) saturate(105%) contrast(105%)opacity (75%);display: block; margin: auto auto auto auto; z-index:-300;
}


