body {
    background-image: url('../img/bg.png');
}

* {
    font-family: sans-serif;
}

#header {
    height: 65px;
    background: grey;
    width: 100%;
    margin-top: -30px; 
}

h1 {
    font-size: 52px;
    color: white;
    text-shadow: 3px 3px #000;
    text-align: center;
    margin-top: 30px;
}

fieldset {
    border: 5px black solid;
    background-color: grey;
}

legend {
    background-color: black;
    color: white;
    font-size: 30px;
    padding: 10px;
}

label {
    font-weight: bold;
}

.container {
    display: inline-block;
    padding: 40px 50px 40px 50px;
    border: 3px black solid;
    margin: auto;
    max-width: 510px;
    margin-left: 130px;
    float: left;
    background: grey;
    margin-top: 40px;
}

input[type=text],
input[type=date],
input[type=time],
select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 3px solid #c3c3c3;
    border-radius: 2px;
    box-sizing: border-box;
    font-size: 18px;
}

#dropList {
    width: 134px;
    font-weight: bold;
    font-size: 20px;
}

#sortBy {
    width: 200px;
    margin-right: 20px;
    font-size: 20px;
    font-weight: bold;
}

#myTask {
    width: 200px;
    font-size: 20px;
    font-weight: bold;
}

.dropTask select {
    width: 200px;
}

li {
    padding: 5px;
}

button {
    background: #CFCFCF;
    color: black;
    border: 2px solid black;
    font-size: 18px;
    padding: 10px 12px;
    cursor: pointer;
    margin: 8px 0;
    min-width: 110px;
    font-weight: bold;
}

button:hover {
    color: white;
}

button:active {
    color: grey;
}

#results {
    padding: 40px 50px 40px 50px;
    border: 3px black solid;
    margin: auto;
    max-width: 480px;
    text-align: left;
    overflow: auto;
    background-color: grey;
    margin-top: 40px;
}

.taskComplete {
	text-decoration: line-through;
}

.taskUrgent {
	color: #FF0000;
    text-shadow: 1px 1px #000;
}