/* 
Valentina Biviano
WEB 190 - Module 6 Lab
Accessible Hobby Page PT 2
*/

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #fdeff4;
    color: #333;
}

/* Centered one-column layout */
header, nav, main {
    width: 80%;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 15px;
    box-sizing: border-box;
}

/* Logo as image on h1 */
header h1 {
    margin: 0;
    height: 120px;
    background: url("mini_illust_logo.png") no-repeat center;
    background-size: contain;
    text-indent: -9999px; /* hides text visually */
    overflow: hidden;
}

/* Skip Link */
a[href="#maincontent"] {
    position: absolute;
    left: -999px;
}

a[href="#maincontent"]:focus {
    position: static;
    background-color: #000;
    color: #fff;
    padding: 5px;
}

/* Navigation Flexbox */
.nav-flex {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    border-top: 2px solid #f3c6d3;
    border-bottom: 2px solid #f3c6d3;
}

.nav-flex li a {
    text-decoration: none;
    color: #a85d7a;
    font-weight: bold;
    padding: 5px 10px;
}

.nav-flex li a:hover {
    text-decoration: underline;
}

/* Hide nav heading visually */
nav h2 {
    position: absolute;
    left: -999px;
}

main h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #b5658c;
    border-bottom: 2px solid #f3c6d3;
    padding-bottom: 5px;
}

/* Paragraph styling */
p {
    line-height: 1.6;
    color: #75274e;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff7fa;
}

th, td {
    border: 1px solid #f3c6d3;
    padding: 10px;
    text-align: left;
    color: #75274e;
}

th {
    background-color: #f9dbe6;
}

caption {
    font-weight: bold;
    margin-bottom: 10px;
    color: #a85d7a;
}