body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    /*background-color: #003399;  Dark blue background */
    background-color: #423457;
    color: white;
    padding: 10px 20px; /* Padding around the content */
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px; /* Adjust size accordingly */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px; /* Space between menu items */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.user-actions {
    display: flex;
}

.header #contactBtn {
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgb(19, 109, 161);
    color:white;
    font-size: 20px;
    font-weight:bolder;
    cursor: pointer;
}

.sign-up {
    background-color: #66c0f4; /* Light blue background for sign up button */
    width:90px;
    margin-left:10px;
    font-weight: bolder;
}

.log-in {
    background-color: #5a5a5a; /* Gray background for log in button */
    width:90px;
    margin-left:15px;
    font-weight: bolder;
}

.header-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
}

.employers-link {
    color: #66c0f4; /* Light blue link color */
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    text-align: center;
}

.grid div {
    background: #e9e9e9;
    padding: 10px;
    border-radius: 5px;
}