:root {
    --text: #040606;
    --background: #ebf9f7;
    --primary: #193a9e;
    --primary-lighter: #1f49c7;
    --secondary: #dee3e2;
    --accent: #525880;
    font-size: 16px;
}

body {
	font-family: "Segoe UI", "Lucida Grande", Tahoma, Arial, sans-serif;
	background: var(--background) ;
	color: var(--text);
    margin: 0;
}

main {
	max-width: 800px ;
	margin: auto ;
}

img {
	max-width: 100% ;
}

header {
	text-align: center;
}

h1 {
    font-size: 32px;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-lighter);
    text-decoration: underline;
}

footer {
	text-align: center ;
	clear: both ;
}

.blog-summary {
    background-color: var(--secondary);
    padding: 1em 1em;
    border-radius: 10px;
    margin-bottom: 15px;
}

.button-primary {
    background-color: var(--primary);
    color: var(--background);
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    padding: 10px 14px;
    font-weight: 400;
    transition-duration: 0.4s;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    white-space: nowrap;
    transition: all 0.15s ease 0s;
}

.button-primary:hover {
    color: #fff;
    background-color: var(--primary-lighter);
    transform: translateY(-1px);
    text-decoration: none;
    transition: all 0.15s ease 0s;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--secondary);
}

.navbar li {
    padding: 8px 4px;
}

.navbar a {
    color: var(--primary);
    text-decoration: none;
    padding: 8px 16px;
    display: block;
    font-size: 18px;
}

.navbar a:hover {
    text-decoration: underline;
}

/* For TAGLIST.HTML */
.taglist {
	text-align: center ;
	clear: both ;
}

.cute-tag {
    padding: 5px 10px;
    background-color: var(--secondary); 
    border-radius: 5px;
    margin: 5px;
    text-decoration: none;
    color: var(--text);
}

.cute-tag:hover {
    background-color: var(--accent-lighter);
}

/* For NEXTPREV.HTML */
#nextprev {
	/* The container for both the previous and next articles. */
}
#prevart {
	float: left ;
	text-align: left ;
}
#nextart {
	float: right ;
	text-align: right ;
}
#nextart,#prevart {
	max-width: 33% ;
}
