html {
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.logo-image {
    width: 100%;
}

h1 {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    margin-top: 20px;
}

#path {
    text-align: center;
    margin-bottom: 10px;
}

#coursework {
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}


.job-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 20px 40px;
}


.job-box {
    background-color: rgb(240, 240, 240);
    border: 2px solid black;
    border-radius: 5px;
    padding: 20px;
    width: 45%;
    min-width: 250px;
    text-align: center;
    list-style: none;
}


.job-box h3 {
    margin-top: 0;
    font-size: 20px;
}


.job-box p {
    font-size: 16px;
    line-height: 1.5;
}


@media (max-width: 600px) {
    .job-box {
        width: 45%; 
    }
}

@media (max-width: 400px) {
    .job-box {
        width: 90%; 
    }
}

footer {
    background-color: rgb(240, 240, 240);
    text-align: center;
    padding: 10px;
}
