* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  background: url("../assets/background.png") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* optionele donkere overlay */
}

.logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.message {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
  max-width: 600px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .message {
    font-size: 1.2rem;
  }

  .logo {
    max-width: 180px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .message {
    font-size: 1rem;
  }
}

@font-face {
  font-family: 'Arco';
  src: url('../fonts/ARCO.ttf') format('truetype');
  font-display: swap;
}

.headline {
  font-family: 'Arco', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

.gradient-text {
  background: linear-gradient(to right, #ee7e05, #fab60d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}