body {  
    font-family: Arial, sans-serif;  
    line-height: 1.6;  
    margin: 0;  
    padding: 0;  
    background-color: #f4f4f4;  
}  

header {  
    background: #004b87;  
    color: #ffffff;  
    padding: 10px 20px;  
}  
header h1{
    margin-left: 2%;
}
header h1:hover{
    color: #ff2b2b;
}
.job-posting {  
    background: #ffffff;  
    margin: 20px;  
    padding: 20px;  
    border-radius: 9px;  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);  
}  

h2, h3 {  
    color: #004b87;  
}  

ul {  
    list-style-type: none;  
    padding: 0;  
}
.btn .interest-button {  
    background-color: #ff4e50; /* Button color */  
    color: white;              /* Text color */  
    border: none;              /* Remove border */  
    padding: 15px 20px;        /* Padding for the button */  
    border-radius: 5px;        /* Rounded corners */  
    font-size: 17px;           /* Text size */  
    cursor: pointer;           /* Pointer cursor on hover */  
    transition: background-color 0.3s ease; /* Transition for hover effect */
    margin-left: 35%;
    margin-top: 2%;
}  

.btn .interest-button:hover {  
    background-color: #ff2b2b; /* Darker shade on hover */  
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */  
}

footer {  
    text-align: center;  
    padding: 10px 0;  
    background: #004b87;  
    color: white;  
    position: relative;  
    bottom: 0;  
    width: 100%;  
}