/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


@font-face {
    font-family: 'Cal Sans';
    src: url('/fonts/CalSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* This is important for performance! */
}

@font-face {
    font-family: 'Space Mono';
    src: url('/fonts/SpaceMono-Regular.ttf') format('truetype');
    font-weight: 400; /* This is the 'normal' weight */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Mono';
    src: url('/fonts/SpaceMono-Bold.ttf') format('truetype');
    font-weight: 700; /* This is the 'bold' weight */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Mono';
    src: url('/fonts/SpaceMono-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Space Mono';
    src: url('/fonts/SpaceMono-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ====================================
   General & Global Styles
   ==================================== */
body {
    font-family: 'Space Mono', monospace;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

h1, h2, h3, ul, button {
    font-family: 'Cal Sans', sans-serif;
}

li, dt, dd {
    font-family: 'Space Mono', monospace;  
  }

p, .event-desc, .event-details, a {
    font-family: 'Space Mono', monospace;
}

h1 { font-size: 5em; }
h2 { font-size: 1.5em; margin: 0; }
h3 { font-size: 1.2em; }
p, li, dt, dd { font-size: 0.8em; }

a {
    color: #000000;
    font-size: 1em;
    text-decoration: none;
    border-bottom: 1px dashed #000;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #d3d3d3;
    border-bottom: 1px dashed #d3d3d3;
}
 
#all{
width: 100%;
}
 
#side{
text-align: center;
width: 20%;
height: 100vh;
float: left top;
background-color: #fff;
padding: 10px;
}
 
#aboutheader{
margin: 0px 0px -5px 0px;
}
 
#about{
text-align: justify;
margin: 30px;
padding-right: 10px;
letter-spacing: 1px;
}
 
.divider{
border-bottom: 1px dashed #3d2120;
margin: 30px;
margin-top: 50px;
}
 
ul{
padding: 0px;
margin: 0px;
}
 
li{
list-style-type: none;
margin: 5px 0;
}
 
#main{
width: 80%;
height: 100vh;
float: right;
background-color: #fff;
overflow: scroll;
overflow-x: hidden;
}
 
#header{
background-color: #000000;
height: 70px;
}
 
#header h1{
margin: 0px;
margin-left: 20px;
font-weight: normal;
color: #fff;
font-size: 70px;
line-height: 105px;
text-transform: uppercase;
font-family: 'Cal Sans', sans-serif;
}
 
.subheader{
text-transform: uppercase;
margin: 0px 0px -5px 0px;
padding: 10px 10px 0px 10px;
}
 
.postcontainer{
padding: 10px;
position: relative;
}
 
.iconanddatecontainer{
height: 92px;
border-bottom: 2px dashed #336633;
}
 
.icon{
border: 1px solid #000000;
}
 
.posttext{
padding: 0px 15px 0px 15px;
letter-spacing: 1px;
text-align: justify;
margin-top: -4px;
}
 
.icon{
position: absolute;
}
 
.date{
position: absolute;
right: 10px;
}
 
a{
text-decoration: none;
color: #336633;
}
 
a:visited{
color: #336633;
}
 
a:hover{
font-style: italic;
font-weight: bold;
}
 
a:active{
font-weight: bold;
font-style: italic;
}
 
::-webkit-scrollbar{
width: 5px; 
}
 
::-webkit-scrollbar-track{
background-color: transparent;
}
 
::-webkit-scrollbar-thumb{
background-color: #e98583;
}
 
#bg{
position:fixed;
bottom: 0px;
left: 0;
opacity: 0.9;
}