main {
    background-color: white;
    width: auto;
    margin-top: 0;
    /* border-bottom: 0.4vw solid rgb(238, 155, 255); */
    padding: 3vh;
    padding-top: 0;
    padding-bottom: 0;
}

.jobs {
    width: auto;
    padding: 2vw;
}

.jobs h2 {
    margin-top: 0;
    font-size: 2vw;
    background-color: black;
    border-radius: 3vh;
    padding: 1vh;
    color: white;
}
.jobs h3 {
    display: none;
}

.jobs h2 span{
    font-style: italic;
    font-size: 1.5vw;
    color: rgb(238, 155, 255);
}

.jobs div {
    display: flex;
    justify-content: center;
    align-items: center; 
}

.jobs div p {
    width: 70%;
    padding-top: 0;
    padding: 1vw;
    font-size: 2.7vh;
    font-family: Georgia, serif;
}

.jobs div img {
    width: 20vw;
    height: 100%;
}

.quickButtons {
    display: flex;
    justify-content: center;
    align-items: center; 
    padding-top: 2vh;
    padding-bottom: 2vh;
}

.jumpButton {
    text-decoration: none;
    width: 35vh;
    /* height: 5vh; */

    text-align: center;
    font-size: 2.4vh;
    
    background-color: inherit;
    color: white;
    border-radius: 1vh;
    border: 0.5vh solid white;

    padding-top: 1vh;
    padding-bottom: 1vh;
}

.jumpButton:hover{
    border: 0.5vh solid rgb(238, 155, 255);
}

.jumpButton:focus{
    outline: none;
    border: 0.5vh solid rgb(238, 155, 255);
}

@media screen and (max-width: 750px) {
    .jobs h2 {
        margin-top: 0;
        font-size: 3.5vh;
    }
    .jobs h2 span{
        display: none;
    }
    .jobs h3{
        display: block;
        font-style: italic;
        font-size: 2.5vh;
        background-color: black;
        border-radius: 3vh;
        padding: 1vh;
        color: rgb(238, 155, 255);
        margin-top: -2vh;
    }

    .jobs div {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .jobs div img {
        width: 30vh;
        height: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .jobs div p {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .jumpButton {
        border: 0.5vh solid rgb(238, 155, 255);
    }


}