:root {
    /* cores principais */
    --background-color: #3196CF;
    --flog-color: #43A1D5;
    --text-color: #0F5378;
    --link-color: #C8D4F5;
    --accent-color: #6509D6;

    /* botões */
    --button-color: #4198C9;
    --button-text-color: #FCF5E2;
    --cor-text-botao: #FFFFFF;

    /* subtítulo */
    --subtitle-bg: #3196CF;
    --subtitle-color: #041E9D;
    --subtitle-align: left;
    --subtitle-font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --subtitle-font-size: 14px;

    /* tipografia */
    --font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-size: 13px;

    /* arredondamento */
    --button-radius: 10px;
    --flog-radius: 8px;
    --thumb-radius: 10px;
    --main-image-radius: 14px;

    /* fundo */
    --background-image: none;
    --background-size: auto;
    --background-position: top center;
    --background-repeat: no-repeat;

    /* barra do topo */
    --top-icons-color: #FFFFFF;
    --top-text-color: #FFFFFF;
    --top-links-color: #9D7BFF;
    --top-bg-color: #14141A;

    /* outros */
    --banner-height: 280px;
    --avatar-border-width: 0px;
    --avatar-shape-radius: 50%;
    --shadow-intensity: 2;
    --border-radius-percent: 2;
}

/* base global */
html,
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: 1.4;
}

/* preview / flog */
#FlogPage {
    background-color: var(--background-color);
}