body{
    background-color: #b2ba8f;
    text-align: center;
    margin: 0 auto;
    color: #ffffff;
}

input[type="text"]{
    border : 0;
    border-bottom: 1px solid #000000;
    padding: 20px;
    margin: 10px;
    outline: 0;
    background:transparent;
    width: 50%;
    text-align: center;
    font-size: 20px;
}

.form,
.greetings,
.js-changeName,
.js-removeToDo{
    display: none;
}

.js-weather{
    position: fixed;
    top: 0;
    right: 15px;
}

.js-clock {
    font-size: 60px;
}
.js-clock h1{
    margin: 10px;
}

.greeting-display{
    display: none;
    font-family: "Racing Sans One", cursive;
}

.show-flex{
    display: inline-flex;
}

.js-greetings{
    font-size: 45px;
}

.js-changeName,
.js-removeToDo{
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius : 20px;
    color: #000000;
    opacity: 0.8;
    cursor: pointer;
}

.js-changeName:hover,
.js-removeToDo:hover{
    animation: changeColor 0.8s linear;
    background: #b2ba8f;
    border: 1px solid #b2ba8f;
    opacity: 1;
}

.js-toDoList button{
    background: transparent;
    border: 0;
    cursor: pointer;
    outline: 0;
}

.showing{
    display: block;
    margin: 0 30px;
}

.bgImage{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: fadeIn 0.5s linear;
}

.btn{
    margin: 0 auto;
}

@keyframes changeColor{
    0% {
        opacity: 0.8;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 1;
        background-color: #b2ba8f;
    }
}

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