/* Basic Reset */
* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

/* Utility */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.progress-bar progress {
    width: 100%;
    border-radius: 0px;
}

.progress-bar progress::-webkit-progress-bar {
    height: 5px;
    background-color: #0091EA;
}

.progress-bar progress::-webkit-progress-value {
    background-color: red;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

/* General */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 500vh;
    background-color: aliceblue;
    font-family: sans-serif;
}

header {
    padding: 50px 20px;
    background-color: cadetblue;
}

header h1 {
    color: white;
}

main {
    flex: 1;
}

.task-container {
    display: flex;
    margin: auto;
    padding: 10px;
    justify-content: center;
}

.task-container ul {
    min-width: 350px;
    max-width: 450px;
    padding: 10px;
    /* margin: 0px auto; */
    list-style-type: none;
    border: 2px solid #ccc;
    /* background-color: #d8d8d8; */
    box-shadow: 0px 5px 20px -10px black;
}

.task-container ul li {
    cursor: move;
    padding: 10px;
    margin: 5px 0px;
    border-radius: 5px;
    border: 1px dashed black;
    /* background-color: #9fa05f; */
}

footer {
    padding: 10px;
    text-align: center;
}