/** 
Main
**/
:root {
    --color-black: #12130F;
    --color-blue: #145C9E;
    --color-cyan: #48A9A6;
    --color-white: #FBF9FF;
    --color-yellow: #fbff08;
    --color-gray-light: #c4c4c4;
    --text-color: #FFFFFF;
}

body {
    color: var(--text-color);
    max-height: 100%;
    width: 100%;
    margin: 0;
    font-family: sans-serif;
}
#background {
    top: 0;
    position: fixed;
    z-index: -1;
    height: 100%;
    width: 100%;

    background-image: url('/asset/background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    pointer-events: none;
}
div.page {
    overflow-y: auto;
    width: calc(100% - 16px);
    padding: 8px;
}

div.centerholder {
    display: flex;
    justify-content: center;
}
div.content {
    display: block;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.61);
    padding: 1rem;
    border-radius: 7px;
}
div.content h1 {
    margin: 0;
}

/**
Header
**/
div.header {
    display: block;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.61);
    padding: 1rem;
    border-radius: 7px;
}
div.header h1, div.header h2 {
    margin: 0;
}
div.header h1 {
    font-size: 40px;
}
div.header h2 {
    color: var(--color-blue);
    font-size: 28px;
}
div.skills {
    text-align: center;
}
div.skills a.skill {
    display: inline-flex;
    justify-content: center;
    padding: .75rem;
    border-radius: 7px;
    user-select: none;
    text-decoration: none;
}
div.skills a.skill img {
    width: 60px;
    filter: invert();
    opacity: .5;
}
div.skills a.skill p {
    margin: auto 0.25rem;
    font-size: 23px;
    text-transform: capitalize;
    color: var(--color-gray-light);
}

/** 
Projects
**/
img.exampleImage {
    width: 100%;
    display: block;
    border-radius: 7px;
    margin: 1rem 0;
}
p.projectDate {
    color: var(--color-gray-light);
    font-size: 18px;
    margin: 0;
}
p.projectMadeWith {
    color: var(--color-gray-light);
    margin: 0;
    font-size: 18px;
}
h2.projectTitle {
    font-size: 28px;
    margin: .25rem 0;
    color: var(--color-blue);
}
a.styled {
    color: var(--color-blue); 
}