* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #BBA17E;
  color: #f1f5f9;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.coming-soon-text {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.golden-glow-text {
  font-size: 1.5rem;
  color: #D4AF37; /* goudkleur */
  font-weight: bold;
  text-shadow:
    0 0 1px #D4AF37,
    0 0 2px #D4AF37;
}

.bouncing-logo {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: contain;
  pointer-events: none;
}

.socials {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.socials a {
  margin: 0 15px;
  font-size: 1.2rem;
  text-decoration: none;
}

.socials a:hover {
  text-decoration: underline;
}
