/* add a hover effect to the navbar class elements */

/* Path: styles.css */
/* Path: index.html */

body {
    font-family: Arial, sans-serif;
    font-size: 1.6em;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.href {
    color: rgb(0, 225, 255);
    text-decoration: underline;
}

html {
    box-sizing: border-box;
    background-color: #111;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.4em;
    text-align: center;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.8em;
}

.flex-container {
    display: flex;
    justify-content: space-between;
}

.flex-item {
    width: 45%; /* Adjust this as needed */
}

h4 {
    font-size: 1.6em;
}

h5 {
    font-size: 1.4em;
}

h6 {
    font-size: 1.2em;
}

p {
    margin: 0 0 1.6em 0;
    padding: 0;
}

ul, ol {
    margin: 0 0 1.6em 0;
    padding: 0;
}

li {
    margin: 0 0 0.4em 0;
    padding: 0;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.navbar {
    background-color: #333;
    text-align: left;
    padding: 10px;
    margin: 0;
}

.navbar {
    color: white;
    margin: 0 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.navbar a:hover {
    border-bottom: 2px solid white;
}

.grid {
    margin: 20px;
    color: white;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin: 0;
}

.emp {
    color:red;
}

/* Path: index.html */
/* Path: styles.css */

