@import "global.css";

.blogs {
  display: flex;
  flex-wrap: wrap;
}
.disclaimer, .iut-ac {
  color: gray;
  font-style: italic;
}

.disclaimer {
  align-self: center;
  justify-self: center;
  text-align: center;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

#header-inner {
  display: flex;
  justify-content: space-between;
  width: 60%;
  @media screen and (max-width: 1000px) {
    width: 80%
  }
}

#header-inner div {
  display: flex;
  flex-direction: column;
  width: 46%;
}

#header-inner label {
  color: var(--base01);
  margin-bottom: 10px;
}

#header-inner .filter {
  font-size: 14px;
  background-color: var(--base05);
  outline: none;
  border: 1px solid var(--base01);
  @media screen and (max-width: 1000px) {
    font-size: 18px;
  }
}

option {
  font-size: small;
}

input {
  height: 40px;
  padding-left: 12px;
  @media screen and (max-width: 1000px) {
    height: 40px;
  }
}

select {
  height: 44px;
  padding-left: 12px;
  @media screen and (max-width: 1000px) {
    height: 44px;
  }
}

option {
  line-height: 0px;
  background-color: var(--base05)
}

header .filter:focus {
  background-color: var(--base06)
}

article {
  margin-left: 40px;
  margin-right: 40px;
  color: var(--base03);
}

article h2 {
  color: var(--base02)
}

article p {
  text-align: justify;
  padding-bottom: 30px;
  line-height: 42px;
}


#projects > article:last-child {
    margin-bottom: 30px;
}

h3 {
  color: var(--base0C);
}


