/*
    PAGES THAT USE THIS STYLE:
    /stgui
*/

/* background color and extra padding at the bottom, also a nice max width so things don't look weird */
body {
    background-color: #161616;
    margin-bottom: 30px;
    max-width: 1920px;
    margin: auto;
    margin-left: 30px;
    padding-bottom: 30px;
    margin-right: 30px;
}

#me-head {
    position: fixed;
    top: 5px;
    left: 5px;
}

/* cool link color */
a:link {
    color: #00bffe;
}

/* cool link color, who still does "visited" links anymore? */
a:visited {
    color: #00bffe;
}

/* cool shadow */
a:hover {
    text-shadow: 0 0 3px #00ffdf;
}

/* big yellow titles */
h1 {
    color: #ffd900;
    font-family: "Red Hat Text",sans-serif;
    margin-bottom: 0px;
    text-align: center;
}

/* smaller white titles */
h2 {
    color: #f2fbff;
    font-family: "Red Hat Text",sans-serif;
    margin-top: 5px;
    margin-bottom: 0px;
    text-align: center;
}

/* more small white titles */
h3 {
    font-size: 1.75em;
    color: #f2fbff;
    font-family: "Red Hat Text",sans-serif;
    margin-top: 5px;
    margin-bottom: 0px;
    border-bottom: 1px solid #f2fbff;
    max-width: 90%;
}

/* functions and hooks */
h4 {
    font-size: 1.17em;
    color: #f2fbff;
    font-family: "Signika Negative", sans-serif;
    margin-top: 5px;
    margin-bottom: 0px;
}

/* smaller gray titles */
p {
    color: #d5d5d5;
    font-family: "Signika Negative", sans-serif;
    margin-top: 2.5px;
    margin-bottom: 0px;
    font-weight: 300;
}

ul {
    color: #d5d5d5;
    font-family: "Signika Negative", sans-serif;
    font-weight: 300;
}

.exp {
    margin-left: 20px;
}

/* code */
.code {
    font-family: "Courier New", monospace;
    background-color: #101010;
    padding: 5px;
}

/* what? */
.var {
    color: #f2fbff;
}

/* some good organization i guess */
* {
    box-sizing: border-box;
}