.logo-picture{
  height: 100%;
  width: 15%;
  margin-right: 16rem;
  object-fit: fill;
}
.logo-picture img{
  height: 5rem;
  width: 13rem;
}
.job-over{
    display: flex;
    justify-content: center;
    align-items: center;
}
.job-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.job-item{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}
.job-item h3{
    display: flex;
    justify-content: center;
    font-size: 50px;
}
.job-item p{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin: 0   auto;
}
.job-item span{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin: 0   auto;
    font-size: 20px;
}
.job-item .btn-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
   font-size: 25px;
}

.no-job{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    flex-direction: column;
    padding: 10px;
}
.no-job a:hover{
    background-color: var(--accent-color);
    color: var(--background-color);
    transition: 0.3s;
    border-radius: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
/* From Uiverse.io by SteveBloX */ 
button {
  width: 250px;
  height: 60px; 
  border: 2px solid grey;
  border-radius: 45px;
  transition: all 0.3s;
  cursor: pointer;
  background: white;
  font-size: 1.4rem;
  font-weight: 550;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 25px;
  transition: background-color 0.5s ease, color 0.3s ease, font-size 0.3s ease;
}

button:hover {
  background:  linear-gradient(to bottom, #a88308d7, #000000);
  color: white;
  font-size: 1.5rem;
  border: 1px solid whitesmoke;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  :root{
    font-size: 13px;
  }
  .container h1{
    font-size: 30px !important;
  }
  .no-job button {
    width: 110px;
    height: 40px; 
    font-size: 12px;
    border: 2px solid grey;
    background-color: transparent;
  }

  .no-job p {
    font-size: 15px;
    font-weight: 650;
    text-align: center;
  }

}

.jobs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: rgb(31, 31, 31);
    margin-bottom: 20px;
}

.jobs-table th,
.jobs-table td {
    border: 1px solid #333;
    padding: 12px;
    text-align: center;
   
}

.jobs-table th {
    background-color: #111;
    color: #a88308d7;
}

.jobs-table tr:nth-child(even) {
    background-color: #1a1a1a;
}

.jobs-table tr:hover {
    background-color: linear-gradient(to bottom, #a88308d7, #000000);
}

@media (max-width: 768px) {

    .jobs-table thead {
        display: none;
    }

    .jobs-table,
    .jobs-table tbody,
    .jobs-table tr,
    .jobs-table td {
        display: block;
        width: 100%;
    }

    .jobs-table tr {
        margin-bottom: 15px;
        background: #131212;
        padding: 10px;
        border-radius: 10px;
    }

    .jobs-table td {
        text-align: right;
        color: white;
        font-size: 15px;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid #333;
    }

    .jobs-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: #0ff;
    }
    button {
  width: 150px;
  height: 60px; 
  border: 2px solid grey;
  border-radius: 45px;
  transition: all 0.3s;
  cursor: pointer;
  background: white;
  font-size: 1.4rem;
  font-weight: 550;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 25px;
  transition: background-color 0.5s ease, color 0.3s ease, font-size 0.3s ease;
}
}