* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden;
  }
  html, body {
    height: 100%;
    overflow: hidden;
  }
  /* Body centreren */
  body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-family: 'Anton', sans-serif;
  }
  /* Container voor SVG en tekst */
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  /* Responsieve SVG-container */
  .svg-container {
    width: 100%;
    max-width: 50%;
    transition: transform 0.3s ease-in-out;
  }
  /* Aanpassing voor kleinere schermen */
  @media (max-width: 900px) {
    .svg-container {
      max-width: 80%;
    }
  }
  /* "Click the screen" tekst */
  p.click {
    color: white;
    font-size: 24px;
    margin-top: 20px;
    opacity: 0.7;
    text-align: center;
    transition: opacity 1s ease-out;
  }
  /* Fade-out effect */
  .fade {
    opacity: 0;
    transition: opacity 1s ease-out;
  }
  /* Transitie voor de SVG-letters */
  #letterD, #letterS {
    transition: transform 0.5s ease;
  }