@import 'css/timeline.css';
@import 'css/header.css';
@import 'css/hero.css';
@import 'css/projects.css';
@import 'css/skills.css';
@import 'css/filter.css';
@import 'css/icons.css';
@import 'css/menu.css';
@import 'css/footer.css';

html {
    scroll-behavior: smooth;
}

body {
    --color-primary: red;
    --color-muted: rgba(0,0,0,.5);
    --color-muted-line: rgba(0,0,0,.2);
    --color: black;
    --bg: #f5f6f8;
    --bg-main: white;
    color: var(--color);
}

body.dark {
    --color-primary: red;
    --color-muted: white;
    --color-muted-line: rgba(0,0,0,.5);
    --color: white;
    --bg: #000;
    --bg-main: #222;
    color: var(--color);
}

@media (prefers-color-scheme: dark) { 
    body {
        --color-primary: red;
        --color-muted: white;
        --color-muted-line: rgba(0,0,0,.5);
        --color: white;
        --bg: #000;
        --bg-main: #222;
    }
}

::selection {
    color: white;
    background-color: red;
}

.routerView {
    position: relative;
    display: flex;
    flex-direction: row;
    z-index: 50;
    background: var(--bg-main);
    /* position: relative; */
    /* display: flex; */
    /* z-index: 50 !important; */
    /* flex-direction: row !important; */
    /* height: auto; */
    /* margin-top: 0;
    box-shadow: 0 30px 100px 0px rgba(0, 0, 0, .1);
    
    transition: all ease 500ms;
    padding: 0 !important; */
}

.routerView menu {
    width: var(--padding-left);
}

/* .routerView menu .sections {
    
    left: 0;
} */

.routerView section {
    width: calc( 100% - var(--padding-left) * 2)
}

/* .routerView section {
    width: calc(100% - var(--padding-left) * 2);
} */

/* .routerView {
    height: auto
} */
/* main .routerView {
    display: flex;
} */

/* main .routerView section {
    width: calc(100vw - var(--padding-left) * 2);    
} */

blockquote {
    font-size: 1.2rem;
}

blockquote cite {
    color: var(--color-muted);
}

.muted {
    opacity: .3
}

.bulb {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 8px;
    /* border: 2px solid var(--color-muted); */
    background: var(--color-muted);
    position: relative;
    cursor: pointer;
}

.dark .bulb {
    background: var(--color-muted);
}

.bulb:after {
    width: 6px;
    height: 2px;
    content: '';
    position: absolute;
    bottom: -6px;
    left: 4px;
    background: var(--color-muted);
    border-radius: 1px;
}

.loading {
    position: fixed; 
    top:0; 
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background: var(--bg-main);
}

p {
    line-height: 1.8rem;
    margin-bottom: 2rem;
}