@font-face{
    font-family: "SegoeUI";
    src:url(fonts/segoeUI-l.ttf) format('truetype');
    font-style: normal;
    font-weight: 200;
}

@font-face{
    font-family: "SegoeUI";
    src:url(fonts/segoeUI-si.ttf);
    font-style: normal;
    font-weight: 300;
}

@font-face{
    font-family: "SegoeUI";
    src:url(fonts/segoeUI-b.ttf);
    font-style: normal;
    font-weight: 700;
}

@font-face{
    font-family: "SegoeUI";
    src:url(fonts/segoeUI-bl.ttf);
    font-style: normal;
    font-weight: 900;
}

body{
    font-family: 'SegoeUI', 'Trebuchet MS';
    margin: 0;

    background-image: 
    radial-gradient(#fcfcfc 30%, transparent 30%),
    radial-gradient(#fcfcfc 30%, transparent 30%);
    background-position: 0px 0px, 16px 16px;
    background-size: 32px 32px;
    background-color: #ffffff;
}

.container{
    display: flex;

    max-width: 1000px;
    margin: 0 auto;
    margin-top: 25px;
}

.left, .right{
    display: flex;
    flex-direction: column;
}

/* left side */
.left{
    margin-left: 30px;
    min-width: 180px;
}

.left h1{ 
    padding: 0 12px;
    padding-bottom: 8px;
    margin: 0;

    font-weight: 900;
    user-select: none;
}

#home{
    margin: auto 0;
    margin-left: -7px;
    margin-right: 7px;
}

#home:hover{
    filter: invert(0.2);
    scale: 1.2;
}

#sidebar{
    display: flex;
    flex-direction: column;
    user-select: none;

    margin-top: 20px;
    height: 455px;
    max-height: 455px;
    overflow-y: scroll;

    filter: none;
}

#sidebar span, #sidebar p, #sidebar h1{
    display: flex;
    flex-direction: column;
    margin: 2px 0;

    background-color: #dae9ff;
}

#sidebar span:first-child{ margin-top: 0 }
#sidebar span:last-child{ margin-bottom: 0 }

#sidebar p, #sidebar h1{ 
    padding: 4px 10px;
    margin: 0;
}

#sidebar h1{
    font-weight: 300;
    font-size: 22px;
    line-height: 25px;

    padding-top: 6px;
    margin-bottom: -2px;
}

#sidebar p{ 
    font-weight: 200;
    font-size: 15px;

    padding-bottom: 6px;
}

#sidebar span:hover, #sidebar span:hover h1, #sidebar span:hover p{ 
    cursor: pointer;
    filter: brightness(1.02);
}

.scrollBox{
    display: flex;
    
    width: max-content;
    margin: 12px auto;
}

#scroll{
    padding: 1px 5px;
    padding-bottom: 2px;
    font-size: 14px;
    user-select: none;

    border: 1px solid #000;
    border-radius: 3px;
}

#scroll:hover{ 
    cursor: pointer;
    font-size: 15px;
}

#scroll:active{ font-size: 14px }

#scrollStatus{ 
    color: #c00;
    font-size: 14px;
}

/* right side */
.right{
    width: calc(100% - 210px);
}

#buttons{
    display: flex;
    margin: 0 30px;
    padding: 10.115px 0;

    overflow-x: scroll;
    user-select: none;
}

#buttons span{
    min-width: max-content;
    margin: 0 6px;
    padding: 4px 10px;

    font-weight: 200;
    font-size: 18px;
}

#buttons span:hover{
    cursor: pointer;
    font-weight: 300;
    text-decoration-line: underline;
}

.blogBox{ display: flex; }


.blogHeader, .blogText{ padding: 0 16px; }

.blogHeader{
    background-color: #f8f1e6;
    padding-bottom: 5px;
}

.blog{
    margin: 20px 30px;
    padding: 12px 0;
    min-height: 455px;

    border: 1px solid #000;
    background-color: #fefefe;
}

.blog p{ margin: 12px 0 }

.blog h1{
    font-size: 36px;
    font-weight: 700;

    margin: 0;
    margin-bottom: -4px;
}

.blog h2{
    font-size: 16px;
    font-weight: 300;
    font-style: italic;

    margin: 0;
    margin-bottom: 4px;
}

.tags{
    margin-left: 10px;
}

.tag{
    font-size: 11px;
    font-weight: normal;
    font-family: Verdana;
    
    background-color: #cbe1f3;
    padding: 2px 6px;
    padding-bottom: 3px;

    height: 18px;
    vertical-align: center;
    margin: auto 2px;

    user-select: none;
}

.info{ display: flex }