*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}
.container{
    width: 100vw;
    height: 100vh;
    background-image: url(img/background.png);
    background-position: center;
    background-size: cover;
    padding: 0 8%;
}
.rocket{
    width: 100px;
    position: absolute;
    right: 5%;
    bottom: 0;
    animation: rocket 4s linear infinite;
}
@keyframes rocket {
    0%{
        bottom: 0;
        opacity: 1;
    }
    100%{
        bottom: 105%;
        opacity: 0;;
    }
}

/* Calender Section */
.hero{
    width: 150px;
    height: 150px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calender{
    width: 150px;
    height: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.left, .right{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-direction: column;
}
.right{
    width: 45%;
    background-color: rgb(255, 80, 168);
    color:black;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.left{
    width: 55%;
}
#date{
    font-size: 40px;
    line-height: 50px;
}

/* To-Do List Box */
   .todo-container {
      background: transparent;
      border-radius: 15px;
      padding: 20px;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      width: 350px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .todo-container h2 {
      text-align: center;
      margin-bottom: 15px;
      color:rgb(38, 2, 53);
    }

    .todo-input {
      display: flex;
      margin-bottom: 15px;
    }

    .todo-input input {
      flex: 1;
      padding: 10px;
      border: none;
      border-radius: 8px 0 0 8px;
      outline: none;
    }

    .todo-input button {
      padding: 10px 15px;
      border: none;
      background: rgb(255, 80, 168) ;
      color: #fff;
      border-radius: 0 8px 8px 0;
      cursor: pointer;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    ul li {
      background: #fff;
      padding: 6px;
      border-radius: 10px;
      margin-bottom: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    ul li.done {
      text-decoration: line-through;
      opacity: 0.7;
    }

    ul li button {
      background: #fff;
      border: none;
      color: #fff;
      padding: 5px 10px;
      border-radius: 6px;
      cursor: pointer;
    }




































































































