
*{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: aliceblue;
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
}
body{
        min-height: 100vh;
        background-image: url('https://wallpapers.com/images/featured/aesthetic-computer-4k-c9qdhe02pr84wh3a.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        position: relative;
        overflow-x: hidden;
        
}
body::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
        z-index: -1;
}
header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color:aqua;
    position: relative;
    z-index: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    /* border: 2px solid rgba(255,255,255,0.18); */
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
    .logo{
        cursor: pointer;
    }
}
header .nav{
    display: flex;
    justify-content: center;
    align-items: center;
}
header nav svg{
    width: 25px;
    height: 25px;
    filter: invert(1);
    transition: all 0.3s ease-in;
}
header nav img:hover{
    transform: scale(1.05);
}
h1{
    transition: all 0.3s ease-in;
}
h1:hover{
    transform: scale(1.05);
}
.title{
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    cursor: pointer;
}

.hamburger{
    display: none;
    cursor: pointer;
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
}
.flex{
    display: flex;
}
.j-c-c{
    justify-content: center;
}
.j-c-sa{
    justify-content: space-around;
}
.a-i-c{
    align-items: center;
}
.list-style{
    list-style: none;
}
.fd-col{
    flex-direction: column;
}
.text-decor{
    text-decoration: none;
}
.gap{
    gap: 15px;
}
.pointer{
    cursor: pointer;
}
.todo-list{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
}
.content{
    position: relative;
    z-index: 0;
    width: 350px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
}
.inp{
    gap: 30px;
}
input{
    color: black;
    line-height: 15px;
    font-size: 20px;
    font-weight: 400;
    height: 50px;
    width: 300px;

}
.bn39 {
    background-image: linear-gradient(135deg, #008aff, #86d472);
    border-radius: 6px;
    box-sizing: border-box;
    color: #ffffff;
    display: block;
    height: 50px;
    font-size: 1.4em;
    font-weight: 600;
    padding: 4px;
    position: relative;
    text-decoration: none;
    width: 7em;
    z-index: 2;
  }
  
  .bn39:hover {
    color: #fff;
  }
  
  .bn39 .bn39span {
    align-items: center;
    background: #0e0e10;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    height: 100%;
    transition: background 0.5s ease;
    width: 100%;
  }
  
  .bn39:hover .bn39span {
    background: transparent;
  }
.tasks{
    width: 450px;
    /* height: 600px; */
}
.tasklist{
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    /* width: 350px;
    height: 250px; */
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
    overflow-y: scroll;
    padding: 10px;
    display: none;
}
.card{
    width: 100%;
    height: 30px;
    /* background-color: bisque; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.tasklist .card p{
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
}
.tasklist input{
    width: 16px;
    height: 16px;
}
.tasklist .card img{
    width: 20px;
    height: 20px;
}
.text-decor-strike{
    text-decoration: line-through;
    font-style: italic;
}
footer{
    width: 100%;
    padding: 10px 0px;
    background-color: #262626;
    position: fixed;
    bottom: 0;
    p, .year{
        text-align: center;
        font-size: 22px;
        font-weight: 200;
    }
}
/* @media (max-width:650px){
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav{
        display: none;
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        display: flex;
        flex-direction: column;
        background-color: #262626;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
        backdrop-filter: blur(10px);
        z-index: 1;
    }
    .nav-item{
        margin: 10px 0;
    }
    .nav.active{
        display: block;
        left: 0;
    }
} */
@media (max-width:950px){
    .todo-list{
        flex-direction: column;
        gap: 60px;
    }
}
@media (max-width:500px){
    .tasks{
        width: 325px;
    }
}