 body {
    background-color: #cddfdf;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;    
}

.site-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.container {
    margin: 10% auto;
    max-width: 600px;
    padding: 0 16px;
}

.todo-box {
    background-color: white;
    padding: 32px;
    border: 4px solid black;    
    border-radius: 4px;
}

h1 {
    color: orange;
    font-size: 34px;
}

h2, .h2 {
    color: orange;
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 18px;
}

p {
    font-size: 20px;
    color: #545454;
}

.inline {
    display: inline-block;
}

.edit {
    margin-left: 12px;
}
.edit:hover,
.delete:hover {
    cursor: pointer;
}

.add-category {
    display: block;
    font-style: italic;
    color: #545454;
    margin-bottom: 12px;
}

.add-category:hover {
    cursor: pointer;
}

ul li {
    color: #545454;
    font-size: 20px;
    list-style-type: none;
}

.firework {
    position: absolute;
    top: -100px;
    z-index: -1;
}

.circle {
    position: absolute;
    right: -250px;
    bottom: -150px;
    width: 750px;
    height: 750px;
    background-color:#f6d5c4;
    border-radius: 50%;
    z-index: -1;
}

footer {
    text-align: center;
    color: grey;
    font-size: 12px;
    padding: 12px;
}



@media screen and (max-width: 414px) {
    h1 {
        font-size: 26px;
    }
}

/*
*
* * Styling form
*
* * */

form {
    margin-bottom: 22px;
}

label {
    display: block;
    font-size: 20px;
    color: #545454;
    margin-bottom: 18px;
}

form input[type="text"] {
    border-radius: 4px;
    padding: 8px;
    width: 50%;
    border: 2px solid #ccc;
    font-family: Arial, Helvetica, sans-serif;
    color: #545454;
    font-size: 16px;
}

form input[type="text"]:focus {
    border: 2px solid #4778d9;
    outline: none;
}

form button {
    outline: none;
    border: none;
    background-color: #f6d5c4;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

form button:hover {
    background-color: #cddfdf;
    cursor: pointer;
}

.hide-animation {
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s ease-out;
}

.hide {
    display: none;
}

/*
*
* * https://codepen.io/GeoffreyCrofte/pen/BiHzp
*
* * */

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: -0.15em;
  width: 1.25em; height: 1.25em;
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '\2713\0020';
  position: absolute;
  top: .05em; left: .22em;
  font-size: 1.3em;
  line-height: 0.8;
  color: #09ad7e;
  transition: all .2s;
  font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}


/* hover style just for information */
label:hover:before {
  border: 2px solid #4778d9 !important;
}