/* Body Page Setup */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #eef2f3;
}

/* Center and style the content area */
main {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Ensure images fit */
img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border: 2px solid #333;
}

/* Navigation Layout */
nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    background: #333;
}

nav li {
    display: inline-block;
    margin: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}