* {
    color: #757575;
    background-color: #FFF;
    font-family: "Inter";
}

#wrapper {
    margin-left: 100px;
    margin-right: 100px;
} 

header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 35px;
    height: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #8FB964;
    text-decoration: none;
    margin-left: 0;
}

.top {
    display: flex;
    align-items: center;
    gap: 52px;
}

nav a {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    color: #000;
}

ul {
    list-style: none;
    display: flex;
    gap: 49px;
}

a {
    text-decoration: none;
}

.text {
    font-size: 30px;
}

h1 {
    font-size: 64px;
    color: #8FB964;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 32px;
    border: 1px solid #000;
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
    margin-bottom: 20px;
}

span {
    color:#000;
}

form {
    display: flex;
    align-items: center;
    gap: 32px;
    border: 1px solid #000;
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
}

input[type="text"]::placeholder{
    color: #A6A6A6;
}

input[type="text"]{
    color: #000;
    border: none;
    font-size: 24px;
    outline: none;
    width: 100%;
}

input[type="checkbox"]{
    width: 40px;
    height: 40px;
    background-color: #8FB964;
    cursor: pointer;
}

input[type="checkbox"]:checked{
    background-color: #8FB964;
    cursor: pointer;
}

/* input[type="checkbox"]{
    appearance: none;
    width: 45px;
    height: 45px;
    border: 3px solid #5B92C4; 
    border-radius: 0;
    background-color: #fff;
    cursor: pointer;
}

input[type="checkbox"]:checked{
    background-color: #fff;
    background-image: url("img/check-mark.png");
    background-size: 45px;
    background-position: center;
    background-repeat: no-repeat;
}

input[type="checkbox"]:checked::after{
    background-color: #fff;
    background-image: url("img/check-mark.png");
    background-size: 45px;
    background-position: center;
    background-repeat: no-repeat;
} */

footer{
    margin-top: 30px;
}