
body {
    margin: 0px;
    background-color: #f3eae8;
}

.bold {
    font-weight: bold;
}#top {
    margin: 0px;
    padding: 0px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.headerTitle {
    width: 25%;
    min-width: 300px;
}

.headerTitle p {    
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 36px;
    font-weight: bold;

    color: #000000;
    text-shadow: #000000 0 0 4px;
    text-align: center;

    margin: 10px;
    margin-top: 5px;
}

.headerNavigation {
    width: 75%;
    min-width: 500px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.headerNavigationElement {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    
    text-align: center;
}

.headerNavigationElement a {
    color: #000000;
    text-decoration: none;
}

.headerNavigationElement a:hover {
    color: #000000;
    text-shadow: #000000 0 0 15px;
    text-decoration: underline;
}#content {
	width: 95%;
	margin-left: 2.5%;
	margin-top: 15px;

	display: flex;
	flex-direction: row;
	align-items: flex-start; /* To have the right height for the categories */
	justify-content: space-evenly;
}

#categories {
	width: 20%;
	border: 4px solid #281107;
	background-color: #008c3e;
	padding-bottom: 10px;
}

.category {
	width: 85%;
	margin-left: 7.5%;
	margin-top: 10px;

	border: 2px solid #002951;
	background-color: #e7c33e;

	font-weight: bold;
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}
.category:hover { background-color: #ece359; }
.categoryTitle { font-size: 24px; width: 100%; text-align: center; }
.categoryNumber { font-size: 20px; width: 100%; text-align: center; }
.categoryTitle p { color: #000000; margin: 0px; margin-top: 10px; margin-bottom: 10px; }
.categoryNumber p { color: #000000; margin: 0px; margin-bottom: 10px; }

.subcategoryList {
	width: 75%;
	padding-bottom: 15px;
	border: 4px solid #281107;
	background-color: #008c3e;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.subcategory {
	width: 45%;
	margin-top: 15px;
	margin-left: 15px;
	margin-bottom: 5px;

	border: 2px solid #002951;
	background-color: #e7c33e;

	font-weight: bold;
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
	text-align: center;
}
.subcategory:hover { background-color: #ece359; }
.subcategoryTitle { font-size: 24px; width: 100%; }
.subcategoryDesc { text-align: justify; font-size: 16px; margin-left: 5%; width: 90%; }
.subcategoryChallCount { font-size: 20px; width: 100%; }
.subcategoryTitle p { color: #000000; margin: 0px; margin-top: 10px; margin-bottom: 10px; }
.subcategoryDesc p { color: #000000; margin: 0px; margin-left: 5px; margin-bottom: 10px; }
.subcategoryChallCount p { color: #000000; margin: 0px; margin-left: 5px; margin-bottom: 5px; }