*{
    font-family: "Nunito", sans-serif;
}

.firstContainer{
    display: flex;
    width: 90vw;
    margin: 60px auto;
    height: 400px;
    height: auto;
}

.infoContainer{
    width: 50%;
}
.infoContainer h2{
    color: red;
}
.infoContainer p{
    margin-top: 30px;
}
.imgContainer{
    width: 50%;
    /* display: flex;
    align-items: center; */
    margin-top: 65px;
}
.imgContainer img{
    width: 96%;
    border-radius: 10px;
    margin-left: 20px;
}
.careerInfo{
    width: 90vw;
    margin: auto;
    margin-top: 10px;
}
.careerInfo p{
    width: 80%;
    margin: auto;
    text-align: center;
}
/* Modal styles */
.modal {
    display: none; /* Hide the modal by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 30%;
    top: 10px;
    width: 50%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  /* The Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;

  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  
@media only screen and (max-width: 768px) {
    .fullWidth{
        width: 90vw;
    }
    .infoContainer p{
        margin-top: 5px;
        font-size: small;
    }
    .firstContainer{
        margin: 10px auto;
    }
    .careerInfo{
        width: 100vw;
        margin-bottom: 20px;
        height: auto;

    }
    .careerInfo p{
        width: 90%;
        text-align: justify;
    }
    .modal {
        left: 0%;
        top: 0px;
        width: 100%; /* Full width */
      }
}