/*main frame*/
#background {
    position: absolute;
    width : 100%;
    height : 100%;
    object-fit: cover;
    top : 0;
    z-index: -1;
}
body {
    margin : 0;
    padding : 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.top-line {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
}

.main {
    display : flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}



/*calender + a*/
h3 {
    margin-top: 0;
}
a {
    text-decoration: none;
}
#calender {
    text-align: center;
    align-items: flex-end;
    margin-right: 30px;
    margin-top: 20px;
}
#year {
    font-size: 25px;
    color:black;
}
#month {
    background-color: black;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding:3px;
}
#today {
    background-color: white;
    color:black;
    padding:1px;
}
#day {
    background-color: black;
    color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding:3px;
}



/*weather*/
#weather {
    color: black;
}
#icon {
    height: 60px;
    width: 60px;
}
#iconTemp {
    display: inline-flex;
    align-items: center;
}
#locaWind {
    margin-left: 10px;
    position: absolute;
    top: 50px;
}



/*clock*/
#clock {
    text-align: center;
    margin-bottom: 40px;
    color : black;
}
#hour {
    font-size: 80px;
    color : powderblue;
    text-shadow: 5px 5px rgba(0, 0, 0, 0.6);
}




/*todo-List*/
.hidden {
    display : none;
}
ul {
    list-style: none;
}
li {
    margin: 4px;
}
button {
    position: relative;
    border: none;
    background: none;
    outline: none;
    top: -1px;
    background-color: rgba(0, 0, 0, 0.2);
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 10px;
    margin-right: 9px;
}
#todo-title {
    display: inline-flex;
}
#todo-text {
    margin-top: 0;
    margin-right: 5px;
    margin-bottom: 0;
    box-sizing: border-box;
    text-shadow: 1px 3px white;
}
#todo-box {
    position: relative;
    top:3px;
    border: none;
    background: none;
    outline: none;
    border-bottom: 2px solid black;
    font-style: bold;
    font-size: 20px;
    height: 25px;
    box-sizing: border-box;
}
#todo-list {
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 10px;
    padding: 5px;
}



/*login*/
#login-form {
    text-align: center;
}
#login-before {
    position: relative;
    top: 10px;
    border: none;
    background: none;
    outline: none;
    border-bottom: 2px solid black;
    text-align: center;
    font-size: 30px;
    align-items: center;
}
#login-after {
    text-align: center;
    margin-top: 0;
    font-size: 40px;
}



/*quote*/
#quote {
    position: fixed;
    bottom: 0;
    text-align: center;
    display: block;
    color: grey;
    backdrop-filter: blur(3px);
    border-radius: 10px;
    display:flex;
    flex-direction: column;
    padding : 10px;
    background-color: rgba(0, 0, 0, 0.4);
    text-decoration: 4px;
}
#authors {
    font-size: 12px;
}