:root {
  --pcolor: hsla(180, 21%, 86%, 0.896);
  --himg: "images/bg-header-desktop.svg";
  --hbcolor: hsl(180, 28%, 43%);
}

@font-face {
  font-family: "lgb";
  src: url("/font/LeagueSpartan-Black.ttf");
}
@font-face {
  font-family: "lgeb";
  src: url("/font/LeagueSpartan-ExtraBold.ttf");
}
@font-face {
  font-family: "lgmd";
  src: url("/font/LeagueSpartan-Medium.ttf");
}

.s1 {
  color: hsl(180, 29%, 50%);
  font-size: o.9em;
}
.s2 {
  font-family: "lgmd";
  font-size: 0.7em;
}
.pill {
  background-color: hsla(180, 77%, 73%, 0.349);
  border-radius: 8px;
  border: 0.1px solid hsla(180, 22%, 69%, 0.623);
  display: inline-block;
  margin: 8px;
  padding: 4px;
}
html {
  background-color: var(--pcolor);
  font-family: "lgb";
}

.jhead {
  background-color: var(--hbcolor);
  background-image: url("images/bg-header-desktop.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 80px;
  padding: 0px;
  margin: 0px;
  margin-top: -10px;
}

.jposts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.jposts--post {
  width: 900px;
  height: 100px;
  border-radius: 4px;
  box-shadow: 8px 8px 26px -8px rgba(146, 144, 144, 0.786);
  border: 0.1px solid rgba(146, 144, 144, 0.786);
  margin-top: 15px;
  margin-bottom: 10px;
  background-color: hsl(180, 52%, 96%);
}
.searcher {
  width: 700px;
  margin: auto;
  height: 80px;
  border-radius: 4px;
  box-shadow: 8px 8px 26px -8px rgba(89, 41, 41, 0.786);
  background-color: hsla(145, 27%, 88%, 0.938);
  position: relative;
  top: -40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.clear {
  padding: 8px;
  text-shadow: 0px 0px 4px rgba(123, 47, 47, 0.748);
  position: absolute;
  right: 5px;
}

.post {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  overflow: auto;
}
.post--logo {
  width: 10%;
  margin: auto;
}
.post--logo img {
  padding: 5px;
  height: 76px;
  text-align: center;
}
.post--details {
  width: 48%;
  text-align: left;
  align-self: flex-start;
}
.post--skills {
  width: 38%;
}

.pt-1 {
  padding-top: 15px;
}
.pd-1 {
  padding: 10px;
}

span {
  font-size: initial;
  transition: font-size 0.2s;
}
span:hover {
  font-size: 1.1em;
  cursor: pointer;
  background-color: hsla(180, 57%, 90%, 0.786);
}

.view {
  display: flex;
}
.hidden {
  display: none;
}
