.hidden {
    display: none;
}

/* Background Portion */

img {
    position:absolute;
    width:100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right:0px;
    bottom:0px;
    z-index: -1;
    opacity:80%;
    }

/* Refactoring */

#login-form, .login-Input, #greeting, #clock {
    font-family: 'Rubik', sans-serif;
    text-align: center;
    font-size: 2rem;
    background-color: transparent;
}

.todo-Input, .todo-Input::placeholder, #todo-list, #weather, button, #quote{
    background-color: transparent;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
  }

/* Greetings & Clock Portion */

#login-form, #greeting {
    margin-top: 11rem;
}

.login-Input{
    border-width: 0;
    padding: 15px 20px;
}

#greeting {
    /**override*/
    font-size: 3rem;
    margin-bottom: 0;
}

#clock {
    /* override */
    font-size: 10rem;
    text-shadow: 3px 3px #fff; 
    margin: 0%;
}

/* Quote Portion */

#quote {
    font-size: 20px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/* Todo List Portion */

.todo-Input  {
    border-width: thin;
    padding: 10px 20px;

    position: absolute;
    top: 13px;
    left: 10px;
}

#todo-list {
    position: absolute;
    top: 45px;
}

button {
    border-width: 0 ;
}

button:hover {
    background-color: #d5edff;
  }

/* Weather Portion */

#weather {
    font-size: 2rem;
    position: absolute;
    top: 10px;
    right: 10px;
}