  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e2d8f0;
    color: #4a4453;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
  }

  h1 {
    margin-bottom: 10px;
    color:#1d1c1f;
  }

  #score, #timer {
    font-size: 1.5rem;
    margin: 5px;
    color:#4a4453;
  }

  #area {
    position: relative;
    width: 800px;
    height: 500px;
    border: 2px solid #4a4453;
    margin-top: 20px;
    background-color: #e2d8f0;
    cursor: crosshair;
  }

  .target {
    position: absolute;
    width: 50px;
    height: 50px;
    transition: all 0.1s ease;
}

  .target img {
    width: 100%;
    height: 100%;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}  

  button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #E2D8F0;
    color: #4a4453;
    border: 2px solid #4a4453
  }

  button:hover {
    background-color: #afa8ba;
}

  button:disabled {
    opacity: 0.5;
}

  #gameOver button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
  }

  #frierenGif {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 450px;
    height: auto;
    z-index: 5;
    pointer-events: none;
}