/* layout base */

body {
    background: #fdfcf9 url(/bear/images/bg.png) repeat;
    font-family: Fraunces, serif;
    font-size: 17px;
    font-weight: 350;
    color: #5a5755;
    text-align: justify;
    line-height: 27px;
    margin: 0;
}

@font-face {
    font-family: "Fraunces";
    src: url(/bear/fraunces.ttf) format("truetype");
}

header {
    background: url(/bear/images/bear.png) center no-repeat; /* if you're here, no i uh. i didn't really reduce this file size. im so sorry. */
    background-size: 850px; /* plEASE don't look at my shame........ */
    margin: 0 auto;
    width: 850px;
    height: 500px;
    margin-bottom: -25px;
}

.container {
    margin: 0 auto;
    width: 900px;
    padding-bottom: 50px;
}

.about {
    margin: 0 auto;
    width: 750px;
}

.main {
    padding-bottom: 20px;
}

h1 {
    font-family: Nanum Pen Script, cursive;
    font-size: 55px;
    letter-spacing: 1px;
    color: #a3b190ba;
    display: block;
    float: left;
    margin: 5px 5px 0 5px;
    padding: 10px;
    text-shadow: 2px 2px 6px rgba(191, 191, 191, 0.47);
}

#footer {
    width: 100%;
    position: absolute;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #bcaf9d78;
    
    font-family: Asap, sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-size: 8px;
    letter-spacing: 1.2px;
    color: #797572;
}
#footer a {
    color: #56838d;
    text-decoration: none;
}

blockquote {
    border-left: 5px solid #bea88acc;
    padding: 10px 0 10px 15px;
    font-family: Asap, sans-serif;
    font-size: 15px;
}

.emoji { /* sizes stolen from https://github.com/jdecked/twemoji */
    height: 1em;
    width: 1em;
    margin: 0 .05em 0 .1em;
    vertical-align: -0.1em;
}
#lilbear {
    float: left;
    margin: 18px 0 0 50px;
    padding-right: 35px;
    height: 116px;
}



/* nav */

#sidenav {
    float: left;
    margin: 25px 20px 0 10px;
    padding: 10px;
    width: 118px;
    background: url(/bear/images/blob.png) center no-repeat;
    background-size: 130px;
    
    font-family: Crimson Pro, serif;
    font-size: 22px;
    font-weight: 450;
    letter-spacing: 0.5px;
    
    text-shadow: 2px 2px 6px rgba(191, 191, 191, 0.47);
}

#sidenav ul {
    list-style-type: none;
    margin: 0 0 0 -26px;
}

#sidenav li::first-letter {
    color: #a3b190ff;
}
#sidenav li a {
    color: #4a4745b0;
    text-decoration: none;
}
#sidenav li a:hover {
    color: #bea88a;
    transition: all 0.5s ease-in-out;
}
#sidenav li a active {
    color: #bea88a;
}



/* updates */

#updates {
    font-family: Karla, serif;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #eee9e5;
    padding: 5px 0 5px 5px;
    text-align: center;
    width: 500px;
    margin: 0 auto;
    margin-top: -15px;
    line-height: 10px;
    color: #797572;
}

#updates a {
    color: #bea88a;
    text-decoration: none;
}
#updates a:hover {
    color: #a3b190ff;
    transition: all 0.5s ease-in-out;
}



/* tables */

table , td, th {
    margin: 0 auto;
	border-collapse: collapse;
}
td, th {
	padding: 5px 15px 5px 15px;
	width: 450px;
	height: 25px;
}

td:first-child {
    border-right: 1px solid #5a575521;
}



/* joined */

#joined {
    font-family: Asap, sans-serif;
    margin: 0 auto;
    text-align: center;
    font-size: 10px;
    line-height: 20px;
    padding-top: 10px;
}

#joined a {
    text-decoration: none;
}



/* main font things + colors */

::selection {
    background-color: rgba(184, 193, 182, 0.71);
}

.heart {
    color: #d6a698;
}
.kaomoji {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8em;
    color: #ada9a3;
    letter-spacing: 0.1em;
}

strong {
    font-family: Crimson Pro, serif;
    font-size: 18px;
    color: #bea88a;
    letter-spacing: 0.8px;
}
i {
    font-family: Asap, sans-serif;
    font-size: 16px;
    color: #89aeb6;
}
u {
    text-decoration: underline 2px #d6a698;
}
s {
    color: #5a575547;
}

a {
    color: #c3baad;
}
abbr {
    text-decoration: underline wavy #d0b289ff;
}
ul {
    list-style: circle outside;
    line-height: 30px;
    width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
}



/* codes by other people!!

CSS LINK HOVER: https://codepen.io/team/css-tricks/pen/xxPORam

*/

.main a {
    text-decoration: none;
    position: relative;
    color: #5a5755;
}
.main a::before {
    content: '';
    background-color: #a3b19076;
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 5px;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}
.main a:hover::before {
    background-color: #bcaf9d78;
    bottom: 0;
    height: 100%;
}