body {
    margin: 0;
    height: 100vh;
    background-image: url("background1.png");
    background-color: #5A3147;
    background-repeat: no-repeat;
    background-position: left bottom !important;
    background-size: 800px;
}
/*----------------------------------------------------------------------------------*/
/*add task button fonts + colors & change on hover*/
.btn.addtaskbutton{
    background-color: #F2B5D4;
    color: #31081F;
    font-size: 20px;
    border-radius: 15px;
    border: 5px solid #F2B5D4;
    font-family: "meursault-variable", serif;
    font-variation-settings: 'wdth' 100, 'wght' 700;
    align-items: center;
    justify-content: center;
}
.btn.addtaskbutton:hover {
    background-color: #31081F;
    color: #F2B5D4;
}
/*----------------------------------------------------------------------------------*/
/*clear all tasks button fonts + colors & change on hover*/
.btn.clearalltasksbutton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #F2B5D4;
    color: #31081F;
    font-size: 30px;
    border-radius: 15px;
    border: 5px solid #F2B5D4;
    font-family: "meursault-variable", serif;
    font-variation-settings: 'wdth' 100, 'wght' 700;
}

.btn.clearalltasksbutton:hover {
    background-color: #31081F;
    color: #F2B5D4;
}
/*----------------------------------------------------------------------------------*/
/* titles font + colors + margins */
.titlefont {
    color: #F2B5D4;
    font-family: "ltc-hess-monoblack", serif;
    font-weight: 400;
    font-style: bold;
    font-size: 50px;
    margin: 30px;
}
.ctmarginsonly {
    margin-top: 30px;
}
/*----------------------------------------------------------------------------------*/
/*enter your task input box styling - fonts + colors*/
.entertaskbutton {
    color: #31081F;
    font-size: 20px;
    font-style: bold;
    border: 5px solid #F2B5D4;
    font-family: "meursault-variable", serif;
    font-variation-settings: 'wdth' 100, 'wght' 700;
}
/*----------------------------------------------------------------------------------*/
/*task item + counter styling - background and border colors*/
/*og task item color, bg color, border*/
.list-group-item {
    color: white;
    background-color: #9e6985;
    border: 3px solid #F2B5D4;
}
/* completed task styling */
.completed {
    color: white;
    background-color: #9e698599;
    border: 3px solid #F2B5D4;
    text-decoration: line-through;
}
/* task counter styling */
.countertext {
    color: #F2B5D4;
    font-family: "meursault-variable", serif;
    font-size: 25px;
}
/*----------------------------------------------------------------------------------*/
/*checkmark button styling - pink and maroon on hover*/
.btn.checkmarkbutton {
    background-color: #F2B5D4;
    color: #31081F;
    border: 2px solid #F2B5D4;
}
.btn.checkmarkbutton:hover {
    background-color: #31081F;
    color: #F2B5D4;
}
/*----------------------------------------------------------------------------------*/
/* x button styling - dark bg, light color*/
.btn.btn-danger {
    background-color: #240909;
    color: #F2B5D4;
    border: 2px solid #F2B5D4;
}

.btn.btn-danger:hover {
    background-color: #F2B5D4;
    color: #240909;
}
/*----------------------------------------------------------------------------------*/
/*footer*/
footer {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 275px;
    text-align: center;
    padding: 10px 0;
    background-color: #F6E1EA;
    color: #31081F;
    font-size: 20px;
    border-radius: 15px;
    border: 5px solid #F6E1EA;
    font-family: "meursault-variable", serif;
    font-variation-settings: 'wdth' 100, 'wght' 700;
}
/*----------------------------------------------------------------------------------*/
/* stars image styling by the clear all tasks button */
.stars {
    margin: 0 10px;
}
