/* Universal Styles */
* {
    font-family: courier, monospace;
    box-sizing: border-box; /* Keeps padding from breaking layouts */
}

body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Page Layout Container */
#main2 {
    font-size: 12px;
    text-align: left;
    width: 600px;
    height: 500px;
    position: fixed;
    top: 125px;
    margin-left: 175px;
}

/* Navigation Links - Base States */
a.link {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    padding: 5px;
}

a.link:link {
    color: #000000;
    text-decoration: none;
}

a.link:visited {
    color: maroon;
    text-decoration: none;
}

a.link:active {
    color: maroon;
    text-decoration: none;
}

/* Navigation Links - Hover Interaction */
a.link:hover {
    color: red;
    text-decoration: none;
    transform: scale(1.2);
    transition: transform 0.2s ease-in-out; /* Smooths out the hover effect */
}