*{
    box-sizing: border-box;
    margin: 0;

}
body{
    background-color: #6bffb8;
    display: flex;
justify-content: center;
}

#app{
    background-color: #fff;
    border-radius: 1em;
    border-color: #6bffb8;
    border: solid gray 0.1px;
    min-height: 50vh ;    
    display: grid;
    grid-auto-rows:minmax(80px,auto) ;
    box-shadow: 0 0 5px rgba(25,25,25,.25);
    
}

.form{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

/*styling the option bar */
#options_bar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.option{
    margin: 15px;
    padding: 10px 15px;
    cursor: pointer;
    transition:  250ms ease-out ;


}
.option:hover{
    background-color: #6bffb8;
    color: #fff;


}
#all_tasks{
    padding: 10px 15px;
}
button{
    border:#6bffb8  1px solid ;
    border-radius: 3em;
    background: none;

}

#input{
    border: solid 0.1px #7e7e7e  ;
    border-radius: 1em;
    background: none;
    margin: 15px;
    padding: 10px 15px;
    
} 

#input:active{
 
        background: none;

        border: solid 0.1px #7e7e7e  ;

    
}

/*styling the main content area so the divs come in columns*/

#content{
    display: flex;
    flex-direction: column;

}
.task{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}
.content{
    margin: 15px;
    padding: 10px 15px;
    color: #6bffb8;
}

#delete{
    
    margin-right: 5px;
}