body {
            background-color: #000080; /* Classic Navy */
            background-image: url('/images/stardust.png');
            color: #ffffff;
            font-family: "Times New Roman", Times, serif;
            margin: 0;
            padding: 10px;
        }

        h1 {
            color: #ffff00;
            font-family: "Comic Sans MS";
            text-shadow: 3px 3px #ff0000;
            text-align: center;
            text-decoration: bold;
        }

        h2 {
            color: #630207;
            font-family: "Comic Sans MS";
            text-shadow: 2px 3px 4px rgba(16, 31, 245, 0.7);
            color: #101ff5;
            text-align: center;
            text-decoration: underline;
        }

        h3 {
            text-shadow: 2px 3px 4px rgba(16, 31, 245, 0.7);
            font-family: "Comic Sans MS";
            color: #101ff5;
            text-align: center;
            text-decoration: underline;
        }

        /* 3-Kolommen Layout */
        .container {
            display: grid;
            grid-template-columns: 200px 1fr 200px;
            gap: 15px;
            border: 4px ridge #cccccc;
            padding: 10px;
            background-color: #c0c0c0; /* Windows 95 Grey */
            color: #000000;
        }

        .column {
            border: 2px inset #ffffff;
            padding: 10px;
            background-color: #ffffff;
        }

        .sidebar {
            text-align: center;
            font-size: 12px;
        }

        /* De Middelste Kolom (Image Map Area) */
        .main-content {
            text-align: center;
            background-image: url('/WEBRING/LANDING/images/cubes.png');
        }

        .image-map-container {
            vertical-align: bottom;
            border: 5px double #0000ff;
            display: inline-block;
            margin: 10px 0;
            line-height: 0;
            transform:  scale(1.0, 1.10);
        }

        marquee {
            background-color: #ff0000;
            color: #ffffff;
            font-weight: bold;
            border: 2px solid #000;
        }

        .blink {
            animation: blinker 1s linear infinite;
            color: #ff0000;
            font-weight: bold;
        }

        @keyframes blinker {
            50% { opacity: 0; }
        }

        .btn-join {
            background: linear-gradient(to bottom, #eeeeee, #999999);
            border: 3px outset #ffffff;
            padding: 10px;
            cursor: pointer;
            font-weight: bold;
            text-decoration: none;
            color: black;
            display: inline-block;
            margin-top: 20px;
        }

        footer {
            text-align: center;
            margin-top: 20px;
            font-size: 10px;
        }

/* De standaard staat en de 'bezochte' staat krijgen dezelfde kleur */
a:link, a:visited {
    color: #5858d6; /* Of een andere kleur naar keuze, bijv. #FFFF00 voor geel */
    text-decoration: underline; /* Houd de onderstreping voor die 90s vibe! */
}
/* ****************************** BUTTONS ***************************** */

.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}