body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  color: white;
  background: #11121a;
}

* {
  box-sizing: border-box;
}

header {
  background: #21212c;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-bottom: 25px;
}

.header-container {
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 25px;
}

.header-container .logo {
  height: 30px;
  margin-right: 10px;
}

.header-container .logo img {
  height: 100%;
}

.search {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

.search-container {
  background: #21212c;
  height: 60px;
  border-radius: 10px;
  border: 2px solid #222328;
  display: flex;
  overflow: hidden;
}

.input-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.input-container input {
  flex-grow: 1;
  background-color: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 20px;
  margin-left: 20px;
}

.input-container i {
  font-size: 20px;
  margin-left: 25px;
}

.button-container {
  background: #0099cc;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: bold;
}

.button-container:hover {
  background: #33ccff;
}

.jobs-list {
  background: #11121a;
  max-width: 1250px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 25px;
}

.jobs-list h1 {
  margin-left: 25px;
  font-size: 20px;
}

.jobs-container {
  background: #11121a;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.job-tile {
  background: #21212c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 30px;
}

.job-tile:hover {
  transform: scale(1.05);
}

.top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.top img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.rolename {
  padding: 20px 0px;
}

.rolename span {
  font-size: 18px;
}

.description {
  height: 105px;
  overflow: hidden;
  flex-grow: 1;
  font-size: 18px;
  color: #96939b;
}

.buttons {
  color: black;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  height: 45px;
}

.button {
  background: #2e2e39;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border-radius: 10px;
  color: #96939b;
  font-size: 14px;
}

.button:hover {
  background: #4f4f63;
}

.apply-now {
  color: white;
  background: #0086b3;
  margin-right: 15px;
}

.button a:link,
a:visited {
  color: white;
  text-decoration: none;
}

.apply-now:hover {
  background: #0099cc;
}

@media screen and (max-width: 930px) {
  .jobs-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .jobs-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
