div.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}


/* Style the buttons inside the tab */

div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}


/* Change background color of buttons on hover */

div.tab button:hover {
    background-color: #ddd;
}


/* Create an active/current tablink class */

div.tab button.active {
    background-color: #ccc;
}


/* Style the tab content */

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.vacancies {
    background-color: #E0E0E0;
    height: 200px;
    border-radius: 2px;
}


/* Style the container with a rounded border, grey background and some padding and margin */

.vaccontainer {
    border: 2px solid #ccc;
    background-color: #eee;
    border-radius: 5px;
    padding: 16px;
    margin: 16px 0;
}


/* Clear floats after containers */

.vaccontainer::after {
    content: "";
    clear: both;
    display: table;
}


/* Float images inside the container to the left. Add a right margin, and style the image as a circle */

.vaccontainer img {
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}


/* Increase the font-size of a span element */

.vaccontainer span {
    font-size: 20px;
    margin-right: 15px;
}


/* Add media queries for responsiveness. This will center both the text and the image inside the container */

@media (max-width: 500px) {
    .vaccontainer {
        text-align: center;
    }
    .vaccontainer img {
        margin: auto;
        float: none;
        display: block;
    }
}
