/*
------------------------------------------------------------
	
	Author - Isaac Amoah
	Date: February 19, 2026
		
------------------------------------------------------------ */

/* ---- CSS Reset (Modified) ---- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, 
aside, 
details, 
figcaption, 
figure, 
footer, 
header, 
hgroup, 
menu, 
nav, 
section {
    display: block;
}

body {
    line-height: 1;
    background-color: #fbfbfb;
    font-family: Arial, "Arial Black", "Arial Narrow", "Arial Rounded MT Bold", "Arial Unicode MS";
}

html {
    -webkit-font-smoothing: subpixel-antialiased;
}

html, 
body {
    height: 100%;
    width: 100%;
    background: #fff;
}

ol, 
ul {
    list-style: none;
}

blockquote, 
q {
    quotes: none;
}

blockquote:before, 
blockquote:after, 
q:before, 
q:after {
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ---- CSS Reset (Modified) - End ---- */

::selection {
    background: #e7e7e7;
    color: black;
}

:target {
    background: #e7e7e7;
}

mark {
    background: #e7e7e7;   
}

img {
    width: 100%;
}

strong {
    font-weight: bold;
    color: #09F;
}

.wrapper,
.container {
    height: 100%;
    width: 100%;
    display: table;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Ibarra Real Nova", Arial, serif;
    font-optical-sizing: auto;
    font-weight: bold;
}

h1.author {
    font-size: 25px;
    text-align: center;
    letter-spacing: 12px;
    white-space: nowrap;
    text-transform: uppercase;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
}


@media (min-width: 480px) {
    h1.author {
        font-size: 40px;
        letter-spacing: 15px;
    }
}


