/* =================================
   1. Reset & General Styles
   ================================= */


/* Reset default browser styles */

h1,
h2,
ul,
p {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
    padding: 0px 10px;
}

body {
    background-color: #fff;
    /* Page background color */
    font-family: 'Roboto Mono', sans-serif;
    /* Global font family */
}

p {
    margin-bottom: .5em;
    /* Default paragraph bottom margin */
    font-size: 1em;
    /* Default paragraph font size */
}


/* =================================
   2. Heading Styles
   ================================= */

h1 {
    font-size: 1.6em;
    /* Main heading font size */
    margin-bottom: 0.2em;
    /* Main heading bottom margin */
}

h2 {
    font-size: 1.2em;
    /* Sub-heading font size */
    margin-bottom: 0.2em;
    /* Sub-heading bottom margin */
}

h3 {
    margin-top: 1em;
    /* Top margin for h3 headings */
    margin-bottom: 0.2em;
    /* Bottom margin for h3 headings */
    color: #222222;
    /* Color for h3 headings */
}


/* =================================
   3. Link Styles
   ================================= */


/* General link styles */

a {
    text-decoration: none;
    /* Remove underlines from links */
    color: #333333;
    /* Default link color */
    font-weight: 600;
    /* Link font weight */
}

a:hover {
    color: #000000;
    /* Link color on hover */
}


/* Link styles within list items */

li a:hover {
    color: #999999;
    /* List item link hover color */
}


/* Link styles within paragraphs */

p a {
    color: #000000;
    /* Link color in paragraphs */
}


/* =================================
   4. Header Styles
   ================================= */

header {
    background-color: #fff;
    /* Header background color */
    text-align: center;
    /* Center header content */
    padding: 0;
    /* Header padding */
}


/* =================================
   5. Footer Styles
   ================================= */

.footer {
    position: fixed;
    /* Fixed position at the bottom of the viewport */
    bottom: 0;
    /* Stick to the bottom */
    width: 100%;
    /* Full width */
    background-color: #000;
    /* Footer background color */
    color: white;
    /* Footer text color */
    text-align: center;
    /* Center footer text */
    padding: 0.4em;
    /* Footer padding */
    font-size: 0.7em;
    /* Footer font size */
    height: 1.2em;
    /* Footer height */
}

.footer a {
    color: #ffffff;
    /* Footer link color */
    font-weight: 300;
    /* Footer link font weight */
}


/* =================================
   6. Remark Styles
   ================================= */

.remark {
    font-size: 0.6rem;
    /* Smaller font size for remarks */
}


/* Responsive Styles */