/* PRIMARY STYLESHEET */

body {
    background-color: #ffffff;
    color: #000000;
    font-family: Helvetica, Arial, sans-serif;
    padding: 30px;
    border-left: 15px solid #ff0000; /* Bauhaus Red thick vertical line */
}

main {
    min-height: 100vh; 
    border-left: 5px solid #0055ff; /* Bauhaus Blue thin vertical line */
    padding-left: 20px;
    margin: 40px 0;
}

h1 {
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 8px solid #000000;
    display: inline-block;
}

/* LINK STYLING WITH YELLOW UNDERLINE */
a {
    color: #000000;
    font-weight: bold;
    padding: 2px 5px;
    /* This creates the yellow underline */
    text-decoration: underline;
    text-decoration-color: #ffcc00; 
    text-decoration-thickness: 3px;
}

/* REQUIREMENT: VISITED LINK BEHAVIOR */
a:visited {
    color: #551a8b; /* Classic purple for visited links */
    text-decoration-color: #ffcc00; /* Keep the underline yellow */
}

/* HOVER STATE */
a:hover {
    background-color: #ffcc00; /* Bauhaus Yellow highlight */
    color: #000000;
    text-decoration: none; /* Removes underline only on hover for effect */
    border: 2px solid #000000;
}