@font-face {
    font-family: "Romance";
    src: url("https://file.garden/aZesKIGu7TMQhaRP/website/fonts/RomanceA.ttf");
}

@font-face {
    font-family: "Lacy";
    src: url("https://file.garden/aZesKIGu7TMQhaRP/website/fonts/lacythethree.ttf")
}

@font-face {
    font-family: "Basiic";
    src: url("https://file.garden/aZesKIGu7TMQhaRP/website/fonts/basiic.ttf")
}

@font-face {
    font-family: "Willow";
    src: url("https://file.garden/aZesKIGu7TMQhaRP/website/fonts/willow.ttf")
}

@font-face{
    font-family: "Hearts";
    src: url("https://file.garden/aZesKIGu7TMQhaRP/website/fonts/heartfont.ttf")
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;}

/* Basics */
body {
font-family: 'Plushie', calibri, Arial, sans-serif;
background-image: url("https://file.garden/aZesKIGu7TMQhaRP/website/IMAGES/bg.png");
color: #d083b0;
font-size:15px;
display: flex;
min-height: 100vh;
letter-spacing:1px;}
  
textarea {background:#222;color:#d083b0;letter-spacing:1px;font-size:12px;}
    
/* Links */
a:link,a:visited,a:active { color: #8f9fef; text-decoration: none; }
a:hover { color: #444; }
  
/* Scrollbar */
::-webkit-scrollbar-thumb {
background-color: #bbb3fc; 
border:1px solid #eee;
border-radius: 3px;}

::-webkit-scrollbar { 
width: 7px; 
height: 0px; 
background: transparent; }
    

/* Sidebar */
.sidebar {
position: sticky;
top: 0;
height: 100vh;
width: 200px;
background: #ffcfea;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
flex-shrink: 0;}

.sidebar h2 {
font-family: 'Hearts', cursive;
font-size: 30px;
color: #8f9fef;
margin-bottom: 10px;
text-shadow: 2px 2px 4px #b8a8ff;}

.sidebar a {
color: #8f9fef;
font-family: "Willow";
font-size: 15px;
font-weight: bold;
text-decoration: none;
margin: 10px 0;
transition: color 0.3s;}

.sidebar a:hover {
color: #d083b0;}
    
.blinkie {margin-bottom:5px;}

/* Main Content */
.content {
flex: 1;
padding: 50px 20px 20px 50px; 
background: url() repeat-x;}

.site-name {
font-family: 'Romance', cursive;
font-size: 30px;
color: #84a2fd;
margin-bottom: 10px;
text-shadow: 3px 3px 6px #b8a8ff;
text-align:center;}
    
.slogan {text-align:center;font-style:italic;color:#d083b0;}

.post {
background: #ffd6ed;
border: 2px solid #bdb6fc;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 0 10px #ffd6ed;
max-width: 500px;
width: 100%;}

.post h3 {
font-family: 'Willow', cursive;
margin-bottom: 15px;
color: #84a2fd;
letter-spacing:4px;}



/* This makes layout responsive ! */
@media (max-width: 768px) {
body {
flex-direction: column;}

.sidebar {
position: relative;
height: auto;
width: 100%;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;}
      

.sidebar h2 {
width: 100%;
text-align: center;
margin-bottom:5px;}

.content {
padding: 15px;
padding-top:50px;}

.site-name {
font-size: 22px;
text-align: center;}
}