/* Add a black background color to the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #e9e9e9;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active{
  font-family: 'Jost', sans-serif;
  }
/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the "active" element to highlight the current page */
.topnav a.active {
  background-color: #2196F3;
  color: white;
}

/* Style the search box inside the navigation bar */
.topnav input[type=text] {
  float: right;
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 17px;
}

/* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
@media screen and (max-width: 600px) {
  .topnav a, .topnav input[type=text] {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type=text] {
    border: 1px solid #ccc;
  }
}
body {
  margin: 0;
  padding: 0;
}
.header{
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(image/bg.jpg);
  background-size: cover;
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}
.welcome_msg {
  font-size: 65px;
}
h1{
  color: lightyellow;
  margin-bottom: 60px;
  font-size: 45px;
  letter-spacing: 2px;
  text-align: center;
  font-family: 'Jost', sans-serif;
}
.search-field {
  height: 50px;
  padding: 10px;
  border: none;
  border-radius: 25px;
  outline: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: medium;
}
.roles {
  width: 400px;
}
.location {
  width: 200px;
}
.search-btn {
  height: 50px;
  width: 150px;
  background: #ffeb3b;
  border: none;
  color: #000;
  border-radius: 25px;
  font-size: medium;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.search-btn:hover {
  background: #ffc107;
  cursor: pointer;
}
.form-box {
  background: rgba(0,0,0,0.5);
  padding: 30px;
  margin-block-start: auto;
  margin-bottom: 150px;
}
/* h2{
  color: lightyellow;
  text-align: center;
}

/* Add a responsive design */
@media screen and (max-width:749px){  
  .welcome_msg {
    font-size: 45px;
  }
  h1 {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .header {
    padding: 5px;
  }
  .search-field {
    height: 30px;
    margin-bottom: 10px;
  }
  .search-btn {
    height: 40px;
  }
}