* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  
  *::-webkit-scrollbar {
    display: none;
  }
  
  .board {
    width: 100%;
    height: 100vh;
    overflow: scroll;

    background-color: black;
    background-position: center;
    background-size: cover;
  }
  
  #lvlInfo {
    position: absolute;
    top: 0px;
    right: 0px;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
  }
  /* ---- FORM ---- */
  #todo-form {
    padding: 32px 32px 0;
  }

  button {
    padding: 12px 32px;
  
    border-radius: 4px;
    border: none;
  
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    color: black;
  
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
  }
  
  /* ---- BOARD ---- */
  #deploy-zone {
    border-radius: 4px;
    border-color: #ffffff;
    background-color: black;

    display: flex;
    justify-content: space-between;
    
    position: relative;
    margin-top: 300px;
    width: 100vw;
  }

  #gameBut {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .lanes {
    display: flex;
    align-items: end;
    justify-content: space-between;
  
    padding: 24px 32px;
  
    overflow: scroll;
    height: 100%;
  }
  
  .heading {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .swim-lane {
    display: flex;
    flex-direction: column;
    gap: 12px;
  
    background: #f4f4f4;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  
    padding: 12px;
    border-radius: 4px;
    width: 225px;
    min-height: 120px;
  
    flex-shrink: 0;
  }
  
  .card {
    background: white;
    color: black;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  
    padding: 12px;
    border-radius: 4px;
  
    font-size: 16px;
    cursor: move;
  }
  
  .is-dragging {
    scale: 1.05;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
    background: rgb(50, 50, 50);
    color: white;
  }