html, body {
    height: 100%;
    overflow: hidden;
    margin: 0;
  }

  body {
    margin: 0; 
    overflow-x: hidden; 
  }
  #weather {
    position: absolute;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    left : 80px;
    margin-top: 20px;
    color : #E7AF55;
    font-style: italic;
  }
  
  #login-form input {
    position: absolute;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    font-size: 40px;
    font-style: italic;
    margin-bottom: 10px; 
    left : 80px;
    margin-top: 60px;
  }

  #datetime {
    position: absolute;
    left: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
    width : 500px;
  }
  
  #date {
    font-size: 32px;
    font-weight: 100; 
  }
  
  #time {
    font-size: 54px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    position: relative; 
    width: 500px;
    border-bottom: 2px solid #6B5E5E;
    padding-bottom: 15px;
  }

  #quote span {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color:gray;
  }

  #mood {
    position: absolute;
    left: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
  }

  #mood-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E7AF54;
  }

  .mood-button-list{
    margin-top: 10px;
    position: relative;
  }
  
  .mood-button{
    margin-left: 10px;
    margin-right: 10px;
    border: none;
    background-color: white;
    cursor: pointer;
  }

  #bookmark {
    position: absolute;
    left: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 450px;
  }

  #bookmark img{
    margin-left: 20px;
    margin-right: 20px;
    border: none;
    background-color: white;
    cursor: pointer;
  }

  #footer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 350px; 
    overflow: hidden; 
    z-index: -1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  #daily-routine{
    position: absolute;
    left: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 350px;
  }

  #daily-form input {
    border: none;
    outline: none;
    font-size: 18px;
    font-style: italic;
    text-align: center;
  }

  #daily-routine-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E7AF54;
  }

  #daily-container {
    width: 150%;
    height: 310px; 
    overflow-y: auto; 
    padding: 15px;
    box-sizing: border-box;
    background-color: #f8f7f7;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

 #Todays-TodoList{
    position: absolute;
    left: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
  }

  #todo-form input {
    border: none;
    outline: none;
    font-size: 18px;
    font-style: italic;
    text-align: center;
  }

  #ToDoList-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E7AF54;
  }

  #Todays-todo-container {
    width: 160%;
    height: 600px; 
    overflow-y: auto; 
    padding: 15px;
    box-sizing: border-box;
    background-color: #f8f7f7;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hidden{
    display: none;
}

#greeting{
    position: absolute;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    font-size: 40px;
    font-style: italic;
    margin-bottom: 10px; 
    left : 80px;
    margin-top: 60px;
  }

.item {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #f4f4f4;
    box-shadow: inset 2px 2px 8px rgba(0, 0, 0, 0.3),
                inset -2px -2px 8px rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: bold;
}

.item div {
    flex-grow: 1;
}

.item button {
    color: white;
    font-style: bold;
    margin-left: 10px; 
    padding: 5px 10px; 
    border: none;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#check-button{
  background-color: #5AFD78;
}

#delete-button{
  background-color: #FF8585;
}

#todo-list{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

#daily-list{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.checked{
  text-decoration: line-through;
}
  
  

  
  
  
  