body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #042d4b, #7abff0);
}

.panner1 {
    position: absolute; 
    top: 80px; 
    left: 0; 
    right:0; 
    width: 100%; 
    height: 25vh; 
    background-image: url('../images/background.webp'); 
    background-size: cover; 
    background-position: center; 
    background-color: #042d4b85;
}

.panner2 {
    position: absolute; 
    top: 80px; 
    left: 0; 
    right:0; 
    width: 100%; 
    height: 25vh; 
    background: linear-gradient(to right, #042d4b, #7abff0); 
    opacity: 0.8;
}

.job-card {
    margin-bottom: 10px;
    background-color: white;
    color: #042d4b;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px;
    margin-left: 10px;
    float: right;
}

.job-card p {
    width: 100%;
    display: block;
}

.job-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.textInput {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}