* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #3B3F45;
    font-family: Roboto;
    color: #FFF;
    font-style: normal;

}

.container-header {
    background-color: #4A4F56;
    width: 100%;
    height: 122px;
    margin: 0 auto;
    padding-top: 23px;


}

h1 {
    font-size: 2.25rem;
    color: #FF8984;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
    margin-bottom: 6px;
    margin-top: 23px;
}

p {
    color: #FF8984;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 28px;
    margin: 0 auto;


}

.container {
    width: 800px;
    flex-direction: column;
    display: flex;
    margin: 0 auto;
    margin-top: 40px;


}

li {
    display: flex;
    width: 800px;
    height: 68px;
    align-items: center;
    font-size: 1.68rem;
    font-weight: 400;
    position: relative;





}

li:nth-child(odd) {
    background-color: #88839E;
}

li:nth-child(even) {
    background-color: #7A7593;

}

input[type="checkbox"] {
    width: 28px;
    height: 28px;
    appearance: none;
    cursor: pointer;
    position: relative;
    background-color: white;



}


input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 14px;
    border: solid black;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    left: 9px;
    top: 3px;

}

label:has(input:checked) {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    color: #9B96AC;
}




label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

span {
    font-size: 1.06rem;
    font-weight: 400;
    line-height: 22px;

}



li:hover::before,
li:hover::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

li:hover::before {
    top: 0;
}

li:hover::after {
    bottom: 0;
}



li:active {
    background: #FF8984;

}

footer {
    display: flex;
    width: 800px;
    height: 65px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    background-color: #4A4F56;
    margin: 0 auto;
    margin-top: 40px;

}

footer p {
    color: #FF8984;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
}