main{
    display:flex;
}
.content{
    width:75%;
}
h1{
    color:#330000;
}
#date{
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color:rgb(55, 0, 117);
}
.sidebar{
    width:25%;
    background-color: rgb(250, 215, 228);
}

/*Responsiveness*/
@media screen  and (max-width:800px) {
    .sidebar{
        display:none;
    }
    .content{
        width:100%;
    }
}