body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 400;
    background-color: var(--background);
    color: #ffffff; /* Fallback text color for dark background */
    box-sizing: border-box;
}

* {
    letter-spacing: -0.02em;
    font-weight: inherit;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Global Container */
.wt-container {
    width: 60%;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .wt-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .wt-container {
        width: 95%;
    }
}