ul li{
    list-style-type: disc;
    list-style-position: outside;
    padding: 5px 0;
    /* text-indent: -1em; */
    margin-left: 20px;
    color: var(--secondary);
}
ul li span {
    color:white;
}
/*footer*/
.footer {
    margin: 10px auto;
    padding: 0 10px;
    max-width: 1000px;
    font-size: large;
}
.logomaly {
    width:200px;
    margin: 30px 0;
}
.logomaly img {width:100%;}
.footer a {
    color:white;
    transition: 0.1s;
}
body[light-mode="dark"] .footeritemflex p {
    color: black;
}

body[light-mode="dark"] .footer a {
    color: black;
}
body[light-mode="dark"] .footer a:hover {
    color: var(--primary);
}
.footer a:hover {
    color: var(--primary);
}
.footeritemflex {
    display: flex;
    align-items: center;
    gap:10px;
}
.footeritemflex img {
    width:35px;
    vertical-align: middle;
}
.footer_menu {
    display:flex;
    gap:10px;
    justify-content: space-between;
}
.footer_tab {
    flex: 1 1 0px;
}
.footer_tab a {
    display:block;
    margin: 10px 0px;
}
@media (max-width: 768px) {
    .footer_menu {
        flex-direction: column;
    }
}

/*copyright*/
.copyright {
    margin:0;
    margin-top:10px;
    padding:10px;
    background-color: var(--primary);
}
.copyright p{
    margin: 0;;
    text-align: center;
    color:white;
}

.page-width {
    max-width: 1000px;
    margin:0 auto;
    padding: 0 5px;
}
.page-width div {
    box-sizing: border-box;
}