/*
 * Cointifly main stylesheet entry point.
 *
 * Keep the public template linked to this file. The imports preserve the
 * existing Cointifly theme while keeping all theme assets under one namespace.
 */
@import url("../cf_style.css");
@import url("../style/cfstyle.css");

:root {
    --cointifly-primary: #c0392b;
    --cointifly-primary-dark: #922b21;
    --cointifly-accent: #e8a838;
    --cointifly-text: #1f2933;
    --cointifly-surface: #ffffff;
}

html {
    box-sizing: border-box;
    min-height: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--cointifly-text);
    background: var(--cointifly-surface);
}

img,
svg {
    max-width: 100%;
}
