/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Verdana, sans-serif;
    color: #003366; /* Deep Blue */
    background: linear-gradient(to bottom, #ffffff, #ddeeff); 
    background-image: url('arcchip-bkg.jpg');
    background-size: cover;
    background-attachment: fixed;
    margin: 5% auto;
    padding: 20px;
    max-width: 1200px;
    text-align: justify;
}

/* Headings */
h1, h2, h3, h4, h5 {
    font-weight: bold;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 6px;
    backdrop-filter: blur(10px); /* Subtle glass effect */
}

h1 {
    font-size: 2rem;
    text-align: center;
    color: #003366;
    border-bottom: 2px solid #003366;
}

h2 {
    font-size: 1.75rem;
    color: #004080;
    border-bottom: 1px solid #004080;
}

h3 {
    font-size: 1.5rem;
    color: #005599;
}

h4 {
    font-size: 1.25rem;
    color: #0066aa;
}

h5 {
    font-size: 1rem;
    color: #0077cc;
}

/* Links */
a {
    color: #0099ff; /* Brighter blue */
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: underline;
    color: #ff6600; /* Warm contrast */
}

/* Paragraphs */
p {
    line-height: 1.6;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.7); /* Light transparency for blending */
    backdrop-filter: blur(5px);
}

th, td {
    padding: 10px;
    border: 1px solid #99ccff;
}

th {
    text-align: left;
    background-color: rgba(204, 238, 255, 0.8); /* Soft transparent blue */
    font-weight: bold;
    color: #003366;
}

tr:nth-child(even) {
    background-color: rgba(230, 247, 255, 0.5); /* Light transparent blue */
}

/* Utility classes */
.text-center {
    text-align: center;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

.modified{
	font-size: 50%;
}
/* Unordered Lists */
ul {
    margin-left: 2em;
    padding-left: 0;
}

ul ul { 
    margin-left: 1em; /* Second level indent */
}

@media (max-width: 768px) {
    body {
        margin: 2%;
        padding: 10px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

