h1 {
  text-align: center;
  font-size: 50px;
  font-family: "Rubik", sans-serif;
}

.work_positions {
  margin: 0 auto;
  width: 95%;
  display: flex;
  justify-content: space-between;
  font-family: "Rubik", sans-serif;
}
.work_positions div {
  width: 30%;
  background: #822C2B;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 30px;
  box-shadow: 20px 25px 10px lightgrey;
}
.work_positions div p, .work_positions div h2 {
  width: 90%;
  text-align: center;
  font-weight: 400;
}
.work_positions div a {
  border: 4px solid white;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 30px;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  text-align: center;
  transition: 0.5s;
}
.work_positions div a:hover {
  background: white;
  color: black;
  transition: 0.5s;
}

.work_banner {
  display: flex;
  gap: 20px;
  width: 80%;
  margin: 40px auto;
}
.work_banner p {
  font-size: 30px;
  font-family: "Rubik", sans-serif;
  text-indent: 20px;
}
.work_banner .work_banner_info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media (min-width: 300px) and (max-width: 700px) {
  .work_banner {
    width: 90%;
    flex-direction: column;
  }
  .work_banner img {
    width: 100%;
  }
  .work_positions {
    width: 90%;
    flex-direction: column;
    gap: 20px;
  }
  .work_positions div {
    width: 100%;
  }
}/*# sourceMappingURL=work.css.map */