body {
    font-family: "Exo 2";
    color: #066897;
    font-size: 14px; /* 18 */
    font-weight: 300;
    background: linear-gradient(90deg, #a6b8c1, #859fab);
}

/* --- HEADINGS --- */

h1 {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    font-size: 40px; /* 45 */
    margin-bottom: 45px; /* 50 */
}

h2 {
    float: left;
    display: inline-block;
    height: 100%;
    width: 80%;
    padding-left: 5%;
    margin: 0;
    font-size: 22px; /* 26 */
    line-height: 45px; /* 50 */
    font-weight: 400;
    text-transform: uppercase;
}

/* --- REUSABLE COMPONENTS --- */

.heading-line {
    height: 45px; /* 50 */
    background-color: #066897;
    color: #f7f7f7;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

.checkbox {
    width: 8%;
    display: inline-block;
    height: auto;
    vertical-align: bottom;
}

.todo-text {
    width: 83%;
}

.delete-btn {
    width: 9%;
    float: right;
}

/* --- ICONS, BUTTONS ETC. --- */

button {
    float: right;
    width: 12%;
    height: 100%;
    border: 0;
    padding: 0;
    outline: none;
    font-size: 24px; /* 26 */
    background-color: #066897;
    color: #f7f7f7;
}

button:hover {
    background-color: #217ca8;
    transition: background-color 0.3s;
}

input {
    width: 97%;
    padding: 0 0 0 3%;
    line-height: 32px; /* 35 */
    border: none;
    font-family: "Exo 2";
    font-size: 12px; /* 14 */
    display: none;
}

i {
    font-size: 18px; /* 24 */
    line-height: 22px; /* 26 */
    position: relative;
    top: 2px;
}

.checkbox-icon {
    color: #33c333;
    padding-left: 10px;
}

.delete-icon {
    color: #d03232;
    padding-left: 12px; /* 12 */
}

.delete-btn:hover {
    background-color: #d03232;
    transition: background-color 0.5s;
}

.delete-btn:hover .delete-icon {
    color: #fff;
}

ul {
    list-style: none;
    padding-left: 0%;
    margin: 0;
}

li {
    line-height: 32px; /* 38 */
}

li:nth-child(odd) {
    background-color: #f4f4f4;
}

.done {
    color: #999999;
    transition: color 0.3s;
}