/*-----------------------------*/
/* === Theme Default ===
/*-----------------------------*/

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*::selection {
    background: var(--section-title-color);
    color: var(--white);
}

*::-moz-selection {
    background: var(--section-title-color);
    color: var(--white);
}

*::-webkit-selection {
    background: var(--section-title-color);
    color: var(--white);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--white);
}