.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;                   
  width: 100vw;
  height: 100vh;
  object-fit: cover;          
}

body {
  font-family:'Hi Melody', sans-serif;
  color: whitesmoke;
}

#clock,
#greeting,
#login-form,
#weather,
#todo-form,
#todo-list {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hidden {
  display: none;
}

#greeting {
  color: white;       
  font-size: 45px;      
  font-weight: bold; 
  margin-left: 20px;
}

#greeting-wrapper {
  display: flex;
  justify-content: center;   
  align-items: center;
  gap: 15px;                 
  margin-top: 30px;
  margin-left: 60px;
  margin-bottom: 30px;
}

#clock {
    font-size: 150px;
    color: aliceblue;
    margin-top: 200px;
    margin-bottom: 20px;
}

input[type="text"] {
  font-family: 'Hi Melody', sans-serif;
  background-color: transparent;  
  border: none;                
  border-bottom: 1px dashed white;
  font-size: 20px;   
  padding: 10px;                 
  color: white;                    
  outline: none;                 
  width: 250px;                  
  text-align: center; 
  margin-bottom: 10px;            
}


#login-form input[type="submit"] {
  font-family: 'Hi Melody';
  background-color: transparent;  
  border: 1px solid white;         
  color: white;                    
  font-size: 16px;
  padding: 6px 16px;               
  border-radius: 8px;              
  cursor: pointer;               
  transition: all 0.3s ease;  
  margin-left: 25px;
}

input::placeholder {
  color: black;         
}
#login-form input[type="text"]{
    margin-left: 83px;
    margin-bottom: 60px;
}

button {
font-family: 'Hi Melody';
  background-color: transparent;   
  border: none;
  color: rgba(80, 80, 80, 0.691);
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 10px;              
  transition: all 0.3s ease;
}

#todo-list{
    margin-top: 5px;
    width: 300px;
    margin: 0 auto; 
    padding-left: 70px;
}


