body {
    padding: 0;
    margin: 0;
    /* background-color: rgba(34, 36, 36, 0.89); */
    /* background-color: rgb(255, 255, 255); */
    background: url(../img/istockphoto-514914078-612x612.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: "Schibsted Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    height: 100vh;

}

.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;

}

.task-table {
    width: 60%;
    /* background-color: rgb(230, 226, 226); */
    background-color: rgba(0, 0, 0, 0.082);
}

.header-table {
    background-color: rgba(41, 46, 44, 0.548);
    width: 100%;
    text-align: center;
    color: rgb(255, 255, 255);
    line-height: 1.8;
}

#m-mission-title {
    display: inline;
}

#addNew-mission {
    float: right;
    background-color: white;
    margin-right: 10px;
    margin-top: 1px;
    line-height: 0;
}

button {
    border: none;
    box-shadow: 0px 3px 5px rgba(168, 168, 168, 0.38);
}

.circular {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0px 3px 15px rgba(100, 100, 100, 0.6);
    background-color: rgba(0, 0, 0, 0.6);
}

.circular:hover {
    background-color: red;
    transition: .9s;
}

.info {
    width: 70%;
}

.actions {
    color: white;
    flex-wrap: nowrap;
}

#task-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-bottom: dashed 1px;
    padding: 20px;
    margin: 20px;
    color: rgba(26, 22, 22, 0.781);
    border-radius: 40px;
}

.done {
    background-color: rgba(164, 202, 174, 0.473);
    transition: .9s;
}

#task-container:hover {
    box-shadow: 0px 3px 17px rgba(238, 236, 236, 0.767);
    transition: .9s;
    border-bottom: none;
    background-color: rgba(46, 44, 41, 0.5);
    color: rgb(247, 247, 230);
}

/* .task-table:hover {
    background-color: rgb(150, 148, 148);
    transition: 1.3s;
} */

#calender {
    line-height: .01;
    margin-bottom: 1px;
    display: flex;
    justify-content: left;
    align-items: center;
}