/*style.css------------------*/
/*--global--------------------*/
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}
section {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/*--header---------------------*/
header {
    background: #35424a;
    color: #ffffff;
    opacity:85%;
}
h2 {
    color: #35424a;
}
nav a {
    color: #ffffff;
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
    background-color: #7f939f;
}
/*--about-----------------------*/

/*--projects--------------------*/

/*--skills----------------------*/
table {
    font-size: 16px;
}
thead {
    background-color: #465563;
    color: white;
}
tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
tbody tr:hover {
    background-color: #f1f1f1;
}
th, td {
    border: 1px solid #ddd;
}
th {
    font-weight: bold;
    text-transform: uppercase;
}
td {
    color: #555;
}
/*--contact---------------------*/
label {
    font-weight: bold;
}
input, textarea, button {
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
/*--footer----------------------*/
footer {
    background: #35424a;
    color: #ffffff;
}