body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 
        Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
        'Helvetica Neue', sans-serif;

    background-color: #ecf0f1;
    color: #bdc3c7;
    width: 100%;
    text-align: center;
    height: 100%;
}

.js-clock {
    display: inlien;
    position: relative;
    margin: 0px;
    color: #ecf0f1;
    text-shadow: 2px 2px 4px #2c3e50, -2px -2px 4px #ecf0f1;
}
.js-clock h1 {
    font-weight: 800px;
    font-size: 2em;
    bottom: 0;
    margin: 0px;
}
.js-clock h1.b-year {
    font-size: 3em;
}
.js-clock h2 {
    display: inline;
    margin: 0px;
    padding-left: 5px;
    top: 5px;
    left: 100px;
    font-size: 1.5em;
}
.js-clock h3 {
    display: inline;
    font-size: 1.2em;
    padding-right: 5px;
}

.js-user{
    border: none;
    position: relative;
    top: 20px;
}

.js-user #name{
    color: #ecf0f1;
    text-shadow: 2px 2px #2c3e50, -2px -2px #bdc3c7;
}

.js-todos{
    width: 100%;
    margin: auto;
    color: #ecf0f1;
    text-shadow: 2px 2px #2c3e50, -2px -2px #bdc3c7;
}

.js-todos div {
    position: relative;
    top: 0px;
}

.js-todos .input_default{
    width: 50%;
    height: 35px;
    margin: auto;
}

.js-todos .input_default input{
    width: 80%;
    height: 100%;
    font-size: 1.5em;
    border: none;
    border-radius: 10px;
    padding: 0px 10px;
}

.todoList h3{
    margin: auto;
}

.todoList ul{
    position: absolute;
    width: 100%;
    left: 0;
    top: 20px;
}

.input_hide {
    /* visibility: hidden; */
    display: none;
}

.todoList {
    display: inline-flex;
    margin: auto;
    width: 30%;
}

.js-weather {
    position: absolute;
    font-weight: 700;
    color: #ecf0f1;
    text-shadow: 1px 1px #2c3e50, -1px -1px #ecf0f1;
    width: 100%;
    margin: auto;
    bottom: 0px;
}

li {
    width: 80%;
    height: fit-content;
    margin: 10px auto;
    text-align: right;
}

li span {
    width: 80%;
    text-align: left;
    display:inline-block;
    font-weight: bold;
    text-shadow: 1px 1px #2c3e50, -1px -1px #ecf0f1;
}

li button {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    padding: 5px;
    margin-right: 5px;
}

@keyframes fadeIn{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bgImage {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    margin: auto;
    z-index: -1;
    animation: fadeIn 1s linear;
}