/*
Title       : Blog Stylesheet
Creation    : 13/11/21
Last Edit   : 16/02/2022

Description :
	Main file for styling the blog webpage
    Contains rules for relevant elements in the blog webpage
*/

#main .container {
    /* flex-box */
    justify-content: flex-start;
}

.panel {
    /* size */
    width: 95%;
    padding: 2%;
}

/* panel interaction */
.panel:hover {
    /* color */
    background-color: var(--highlight_0);
}
