@charset "utf-8";

html,
body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: var(--size-site-min-width);
    background-color: var(--color-site-bg);
    overflow-x: auto;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        url("../../images/default/pattern.jpg") center top / cover no-repeat,
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, var(--color-site-bg-soft) 0%, var(--color-site-bg) 100%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}
body,
table,
input,
textarea,
select,
button {
    font-family: var(--font-regular);
    font-size: var(--font-s);
    line-height: var(--line-normal);
    letter-spacing: 5%;
    color: var(--color-text);
}
input::placeholder,
textarea::placeholder {
    color: var(--color-text-disabled);
}
a {
    text-decoration: none;
    color: inherit;
}
input {
    font-family: inherit;
}
button {
    font-family: inherit;
    cursor: pointer;
}

