@charset "UTF-8";

/**
 * This package is responsible for styling the web pages.
 * 
 * Copyright (C) 2023, José V S Carneiro
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by  
 * the Free Software Foundation, either version 3 of the License, or
 * any later version.
 * 
 * This program is distributed in the hope that it will be useful,    
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License 
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

/* https://colorhunt.co/palette/0f044c141e61787a91eeeeee */

:root {
    --primary: #0F044C;
    --secondary: #141E61;
    --ternary: #787A91;
    --quaternary: #EEEEEE;
}

main {
    height: 100vh;
}

body
{

    font:
        medium
        500
        small
        'Roboto', sans-serif;
}

.scrollbar {
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--ternary);
}

.btn-outline-primary {
    --bs-btn-color: var(--ternary);
    --bs-btn-hover-color: var(--quaternary);
    --bs-btn-border-color: var(--ternary);
    --bs-btn-hover-border-color: var(--ternary);

    --bs-btn-hover-bg: transparent;

    --bs-btn-focus-shadow-rgb: var(--quaternary);
    --bs-btn-active-border-color: var(--quaternary);
}
