*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
}
body{
    background-color: hsl(226, 43%, 10%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}
.container{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main_card{
    background-color: hsl(235, 46%, 20%);
    border-radius: 10px;
    max-width: 250px;
}
.main_info{
    padding: 20px;
    background-color: hsl(246, 80%, 60%);
    border-radius: 10px;
}
.main_info img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px #fff solid;
    margin: 20px 0 30px 0;
}
.main_info p{
    color: hsl(236, 100%, 87%);
    
}
h1{
    font-weight: 300;
    margin: 5px 0 40px 0;
}
.all_btn{
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.all_btn button{
    font-size: 18px;
    background-color: transparent;
    color: hsl(235, 45%, 61%);
    border: none;
    cursor: pointer;
    transition: all ease 0.5s;
}
.all_btn button:hover{
    color: #fff;
}
.active{
    color: #fff !important;
}
.attribution{
    position: fixed;
    bottom: 0;
}
.all_tasks{
    width: 70% !important;
}
.card{
    border-radius: 10px;
    background-color: hsl(15, 100%, 70%);
    position: relative;
    overflow: hidden;
    width: 270px;
    height: 250px;
}
.icon{
    position: absolute;
    right: 15px;
    top: -10px;
}
.card_info{
    background-color: hsl(235, 46%, 20%);
    width: 100%;
    margin: 50px 0px;
    border-radius: 10px;
    padding: 20px;
    height: calc(100% - 50px);
    position: relative;
    z-index: 1000000;
}
.card_info div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card_info h2{
    margin: 20px 5px 10px 5px;
    font-size: 60px;
    font-weight: 300;
}
.card_info p{
    color: hsl(236, 100%, 87%);
    font-size: 16px;
    font-weight: 300;
}
#all_tasks{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px; 
}