/* tech.css */

/* Importing the main styles */
@import url('style.css');

/* Specific styles for the tech page */

/* Header styles */
header {
    background-color: #4a86e8;
}

/* Navigation styles */
nav ul li a[href="tech.html"] {
    color: #4a86e8;
    font-weight: bold;
}

/* Main content styles */
main #tech {
    background-color: #e2e2e2;
    padding: 20px;
    border-radius: 10px;
}

main #tech h2 {
    color: #4a86e8;
}

main #tech p {
    color: #333;
    line-height: 1.6;
}
