/* devices.css */

/* Importing the main styles */
@import url('style.css');

/* Specific styles for the devices page */

/* Header styles */
header {
    background-image: url('images/devices-header.jpg');
    background-size: cover;
    background-position: center;
}

/* Navigation styles */
nav ul li a[href="devices.html"] {
    color: #007BFF; /* Highlight the Devices link */
}

/* Main content styles */
main #devices {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

main #devices h2 {
    color: #007BFF;
}

main #devices p {
    color: #333;
    line-height: 1.6;
}

/* Footer styles */
footer {
    background-color: #007BFF;
}
