body{
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
button:focus{
    outline: none;
}
h3{
    margin-block-start: 0;
    margin-block-end: 0;
}
.container{
    padding: 20vh 10vw 10vh 10vw;
    height: 70vh;
    background-color: #dadada;
}
.box{
    height: 50vh;
    padding: 20px 10px 15px 5px;
    width: 30%;
    border-radius: 30px;
    margin: 0 auto;
    background-color: #dadada;
    box-shadow: -8px -8px 14px 0px #ffffff9a,
                 6px 6px 20px 0px #afafafee;
}
.input-holder{
    display: flex;
    justify-content: space-evenly;
}
.task-input{
    background-color: #dadada;
    padding: 10px 5px;
    width: 75%;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    box-shadow: 2px 2px 5px 0px #b1b1b1 inset, 
                -2px -2px 5px 0px white inset;
}
.task-input:focus{
    outline: none;
}
.add-task{
    border: none;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    padding: 2px 10px;
    border-radius: 10px;
    background-color: #dadada;
    box-shadow: 2px 2px 5px 0px #b1b1b1, 
                -2px -2px 5px 0px white;
    color: darkgreen;
}
.add-task:hover{
    box-shadow: -2px -2px 5px 0px white inset, 
                2px 2px 5px 0px #b1b1b1 inset;
}
.tasks-holder{
    padding: 20px 8px;
}
.task{
    width: 100%;
    padding: 10px 4px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px 0px #b1b1b1, 
                -2px -2px 5px 0px white;;
    background-color: #dadada;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
}
.remove-task{
    border: none;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    padding: 2px 10px;
    border-radius: 10px;
    background-color: #dadada;
    box-shadow: 2px 2px 5px 0px #b1b1b1, 
                -2px -2px 5px 0px white;
    color: red;
}
.remove-task:hover{
    box-shadow: -2px -2px 5px 0px white inset, 
                2px 2px 5px 0px #b1b1b1 inset;
}

@media screen and (max-width: 992px){
    .box{
        width: 45%;
    }
}
@media screen and (max-width: 488px){
    .box{
        width: 70%;
    }
}