body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.job-header {
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 50px 0;
}

.job-header h1 {
    font-size: 5em;
    margin: 0;
    -webkit-text-stroke: 1px black; /* Outline thickness and color */
    color: white; /* Fill color */
}

.job-header p {
    font-size: 3em;
    margin: 0;
    -webkit-text-stroke: 1px black; /* Outline thickness and color */
    color: white; /* Fill color */
}


.job-container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: small;
    background: #ddd;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input, button {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background: #333;
    color: white;
    cursor: pointer;
    border: none;
}

button:hover {
    background: #555;
}

.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
