*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
 
body{
margin: 0;
background-color: #FDA0C3;
color: #5c3443;
font-family: 'Open Sans', sans-serif;
padding: 20px;
}
 
.title{
padding-left: 0.5rem;
font-size: 40px;
line-height: 20px;
position: relative;
z-index: 1;
}
 
.container{
display: flex;
flex-direction: row;
gap: 1rem;
}
 
.block-1{
flex-grow: 2;
flex-basis: 0;
padding: 20px;
display: flex;
flex-direction: column;
row-gap: 10px;
background-color: #FFE4F5;
}
 
.block-2{
flex-grow: 8;
flex-basis: 0;
}
 
.pfp{
width: 100%;
border: 2px solid #5c3443;
}
 
.headers, h1, h2, h3, h4, h5 {
font-family: 'Parisienne', sans-serif;
}
 
.block-1 ul{
padding-left: 2.5em;
}
 
.block-1 li{
font-style: italic;
}
 
.content{
display: flex;
flex-direction: column;
row-gap: 1rem;
}
 
.area{
background-color: #FFE4F5;
padding: 1rem;
border-left: 4px solid #C36B8D;
display: flex;
flex-direction: column;
row-gap: 1rem;
}
 
.postheadwrapper{
display: flex;
justify-content: space-between;
}
 
.posthead{
align-self: center;
}
 
.posth2{
font-size: 26px;
}
 
.date{
font-size: 13px;
}

.music{
font-size: 13px;
}
 
.icon{
width: 75px;
opacity: 1;
border: 2px solid #5c3443;
align-self: center;
}
 
@media(max-width:480px){
.container{
flex-direction: column;
}
.block-1{
height: auto;
text-align: center;
}
.pfpwrapper{
display: flex;
justify-content: center;
}
.pfp{
width: 80%;
}
.block-1 ul, li{
display: inline;
padding: 0;
}
.block-1 li{
margin-left: 5px;
}
.title{
text-align: center;
font-size: 44px;
}
}
 
a{
color: #5c3443;
text-decoration: underline;
}
 
a:visited{
color: #5c3443;
}
 
a:hover{
font-weight: bold;
}
 
a:active{
font-weight: normal;
}
 
::-webkit-scrollbar{
width: 6px; 
}
 
::-webkit-scrollbar-track{
background-color: transparent;
}
 
::-webkit-scrollbar-thumb{
background-color: #C36B8D;
}
 
#credit{
font-size: 12px;
position: fixed;
bottom: 0;
right: 0;
}

/***
EZ Gallery by netfriend - https://netfriend.neocities.org/ez-gallery/
Released under the Unlicense - https://unlicense.org/
***/

.ezgallery.montage { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ezgallery.montage img {
  flex: auto;
  margin: 0 5px 5px 0;
  object-fit: contain;
  max-width: 250px;
  max-height: 250px;
  object-position: bottom;
}

.ezgallery.horizontal { 
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-auto-rows: minmax(100px, auto);
}

.ezgallery.horizontal a {
  text-align: center;
}

.ezgallery.horizontal img {
  text-align: center;
  vertical-align: middle;
  margin: 0 5px 5px 0;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  object-position: bottom;
}


/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

