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

Description :
	Main CSS file for category webpages
    Contains rules for relevant elements in the category webpage
*/

.content_of_main {
    /* flex-box */
    justify-content: flex-start !important;
}

header {
    /* size */
    width: 95%;
    height: auto;
    padding: 1%;

    /* appearance */
    border-top: 2px solid black;
    border-bottom: 2px solid black;

    /* flex-box */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4%;
}

.text {
    /* size */
    width: 90%;
    height: auto;
    margin: 3%;

    /* flex-box */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    text-align: center;
}

/* remove text decorations */
#main a {
    color: black;
}