/* Regular Weight */
@font-face {
  font-family: 'Iosevka Term';
  src: url('/fonts/iosevka-term-extended.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-stretch: expanded;
  font-display: swap;
}

/* Bold Weight */
@font-face {
  font-family: 'Iosevka Term';
  src: url('/fonts/iosevka-term-extendedbold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-stretch: expanded;
  font-display: swap;
} 

body{ 
  background-color: #21222b;
  font-family: 'Iosevka Term';
  color: white;
  margin:0;
} 
div.header{
  display:flex;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #2b2b38;
  border-color: darkred;
  border-bottom-style: solid;
  justify-content: left;
}

div.leftbeef{
  display:flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}

ul.rightnothing {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

ul.rightnothing li a{
 text-decoration: none;
 background-color: #2b2b2b;
 color: white;
 padding: 8px 10px;
 gap: 6px;
 
}

ul.rightnothing li a:hover{
 background-color: #520000;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogpost{
    width: 60vw;
    background-color: #330047;
    border: solid;
    border-color: goldenrod;
}

header{
    margin-left: 10px;
}
header.blogheader h4{
 margin-bottom: 0;
 text-decoration: underline;
}

header.blogheader p{
 margin-top: 0;
}

.blogbody{
    text-indent: 50px;
    margin-left: 20px;
}

.blogbody ul{
  text-indent: 0;
  margin-left: 10px;
}

.blogbody ul a{
  text-decoration: underline;
  font-weight: 700;
  margin-left: -30px;
}

.imagegrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 60vw;
  margin-left: -30px;

}

.imagegrid a img{
  margin-left: -40px;
  max-width: 20vw;
  object-fit: cover;
  aspect-ratio: 16 / 10;
 
}