@font-face { 
    font-family: 'NeoDunggeunmo'; 
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.3/NeoDunggeunmo.woff') format('woff'); font-weight: normal; 
    font-style: normal; 
}

body {
    font-family: NeoDunggeunmo;
    background-color: #34495e;
    color: #ecf0f1;
    margin: 0 0;
}

h1 {
    color: #ecf0f1;
    transition: color 0.5s ease-in-out;
}
input {
    font-family: NeoDunggeunmo;
    width: 400px;
    height: 30px;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    border: 0px;
    background-color:transparent;
    border-bottom: rgb(207, 207, 207) 2px solid;
    color: whitesmoke;
    animation: fadeIn 0.5s linear;
    opacity: 0.9;
}

input::placeholder {
    color: rgb(207, 207, 207);
}

ul {
    padding-left: 0px;
    margin: 0 auto;
    list-style: none;
    width: 400px;
}

li {
    margin: 3px auto;
    text-align: left;
    opacity: 0.9;
}

i {
    color: whitesmoke;
}

button {
    background-color: transparent;
    border: 0;
}

.js-toDoList {
    font-size: 2rem;
    animation: fadeIn 0.5s linear;
    opacity: 0.9;
}

.js-greetings {
    font-size: 2.5rem;
    margin-top: 0px;
    animation: fadeIn 0.5s linear;
    opacity: 0.85;
}

.js-clock {
    margin-top: 170px;
}

.js-clock h1 {
    margin-bottom: 10px;
    font-size:10rem;
    animation: fadeIn 0.5s linear;
    opacity: 0.9;
}

.js-clock,
.js-form,
.js-greetings,
.js-toDoForm,
.js-toDoList {
    text-align: center;
}

.form,
.greetings {
    display: none;
}

.showing {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bgContainer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bgImage {
    z-index: -1;
    position: relative;
    height:114%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.js-weather {
    position: absolute;
    left: 50px;
    top: 14px;
    font-size: 1.5rem;
    font-style: italic;
}

.js-weatherImg {
    position: absolute;
    left: 0%;
    top: 0%;
}