body{ 
background-image:url("/blog/tumblr_p0zczvHGuF1utmqvso5_1280.jpg");
background-attachment: fixed;
background-size: 100%
}

/* containers */

.blogbox{
width: 800px;
border: 1px solid transparent;
border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
border-image-slice: 1;
background: white;
}

.blogbanner img{
width: 100%;
padding: 0;
border-bottom: 2px groove lightblue;
}

.blog{
padding: 10px;
display: flex;
height: 600px;
text-align:left;
height: auto;
background-image: url(/blog/tumblr_069cde81e729b95aed30ce6863ef5efd_809383fd_250.png);
}

.cloumn1{
float: left;
width:250px;
}

.mebox, .navi, .CWbox{
border: 2px ridge lightblue;
width: 150px;
background: white;
}

.mebox{
height: 160px;
}

.CWbox{
height:250px;
padding: 5px;
}

.navi{
height: 250px;
margin-top: 5px;
}

.column2{
width: 450px;
margin-left: 20px;
margin-right: 20px;
background: white;
padding:3px;
}


.column3{
float: right;
width: 180px;
height: 100%;

}

/* other stuff */

hr{
border: 4px solid lightblue;

}

.date{
color:white;
background-color: cornflowerblue;
border:1px solid cornflowerblue;
text-align: left;
text-decoration: underline;
font-weight: bold;
padding-bottom: 3px;
}

blockquote{
    border-left: 3px solid cornflowerblue;
    padding-left: 5px;
    margin-left: 15px;
}

/* Here is the thingy from the sadgirl article */
/* This hides article tags with the ID attribute */
article[id] {
  display: none;
}
/* This makes it so that the article divs will appear when you click the link */
article[id]:target {
  display: block;
}
/* It's just that the home-feed will not be visible upon loading this page (blog.html) so to work around that, just link to your blog page with blog.html#home-feed */