:root {
    --main-bg-color: #ffffff;
    --main-fg-color: #000000;
    --main-font-size: 1em;
    --main-font-weight: 200;
    --navbar-bg-color: #f0f0f0;
    --navbar-fg-color: #000000;
    --navbar-hover-color: #cccccc;
    --sidebar-bg-color: #111111;
    --sidebar-link-color: #aaaaaa;
    --sidebar-hover-color: #ffffff;
    --header-bg-color: #f0f0f0;
    --border-color: #111111;
    --hover-bg-color: #f0f0f0;
    --footer-bg-color: #f0f0f0b0;
    --footer-fg-color: #000000;
    --footer-hover-color: #cccccc;

    --h1-font-size: 2.2em;
    --h1-font-weight: 300;
    --h2-font-size: 1.8em;
    --h2-font-weight: 300;
    --h3-font-size: 1.4em;
    --h3-font-weight: 400;
}

body {
    background-color: var(--main-bg-color);
    color: var(--main-fg-color);
    font-family: sans-serif;
    overflow-x: hidden;
    height:100vh;
}

#content {
    height:100%;
    margin-top: 90px;
}

#intro-slide {
    border-width: 2px;
    border-style: solid;
    border-color: var(--border-color);
    border-radius: 1.5em;
    font-size: 1em;
    transition: 0.5s;
}

.image-base {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.image-fixed {
    background-attachment: fixed;
}
.image-scroll {
    background-attachment: scroll;
}

.ptext .border {
    display: inline-block;
    background-color: var(--main-bg-color);
    color: var(--main-fg-color);
    padding: 20px;
    border-radius: 15px;
    font-weight: 200;
    width: 50%;
}

.border {
    opacity: 0.0;
    transition: opacity 2.0s ease-in-out;
}

.ptext {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: var(--main-fg-color);
    font-size: 1.2em;
}

.section {
    text-align: center;
    font-size: 1em;
    font-weight: 200;
    color: var(--main-fg-color);
}

.section h1 {
    background-color: var(--header-bg-color);
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    padding-top: 50px;
    padding-bottom: 50px;
}

.section h2 {
    background-color: var(--header-bg-color);
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    padding-top: 10px;
    padding-bottom: 10px;
}

.section h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
    padding-top: 10px;
    padding-bottom: 10px;
}

.section p{
    display: inline-block;
    font-size: 1em;
    font-weight: 200;
    padding: 10px 30px;
    line-height: 1.6em;
}
.section a{
    display: inline-block;
    font-size: 1em;
    font-weight: 200;
    padding: 10px 30px;
    line-height: 1.6em;
    text-decoration: none;
    color: var(--main-fg-color);
    border-width: 2px;
    border-color: var(--border-color);
    border-style: solid;
    border-radius: 10px;
}

.section a:hover{
    background-color: var(--hover-bg-color);
}

@media(max-width:600px) {
    #intro-slide {
        font-size: 0.8em;
    }
}

@media(max-width:500px) {
    #intro-slide {
        font-size: 0.6em;
    }
}

@media(max-width:400px) {
    #intro-slide {
        font-size: 0.5em;
    }
}
