.header {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}
.header__content {
  display: flex;
  justify-content: space-between;
  width: 1024px;
  margin: 0 auto;
}
.header__title {
  font-family: "Julius Sans One";
  font-weight: lighter;
  font-size: 2rem;
  margin: auto 0;
}

.menu {
  display: grid;
  width: 60%;
  grid-template-columns: repeat(3, 1fr);
}
.menu__slot {
  text-decoration: none;
  text-transform: uppercase;
  color: #93A1A1;
  padding: 1rem 0;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.menu__slot:not(.menu__slot--active):hover {
  background-color: #EEE8D5;
  color: #3DC4CF;
  box-shadow: inset 0 -4px 0px 0 #3DC4CF;
}
.menu__slot--active {
  font-weight: bold;
  background-color: #EEE8D5;
  color: #D35B8F;
  box-shadow: inset 0 -4px 0 0 #D35B8F;
}
.menu__link {
  text-align: center;
}

@media (max-width: 1024px) {
  .header__content {
    flex-direction: column;
    width: 100%;
  }
  .header__title {
    text-align: center;
    margin: 1rem auto;
    font-size: 3rem;
  }
  .menu {
    width: 100%;
  }
  .menu__slot {
    font-size: 1.5rem;
    width: 100%;
  }
}
.footer {
  margin: auto 0 0 0;
  box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.25);
}
.footer__content {
  display: flex;
  justify-content: space-between;
  width: 1024px;
  margin: 0 auto;
}
.footer__copyrights {
  font-size: 0.75rem;
}

.social {
  display: flex;
  margin: 0 auto;
}
.social__slot {
  width: 100%;
  text-decoration: none;
  color: #6e6e6e;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.social__slot:hover {
  background-color: #EEE8D5;
  color: #3DC4CF;
  box-shadow: inset 0 4px 0 0 #3DC4CF;
}
.social__icon {
  margin-right: 0.2rem;
  width: 24px;
  filter: brightness(0.3);
  transform: translateY(1px);
}

@media (max-width: 1024px) {
  .footer__content {
    flex-direction: column;
    width: 100%;
  }
  .footer__copyrights {
    text-align: center;
    letter-spacing: 0.1rem;
  }
  .social__slot {
    font-size: 1.5rem;
    padding: 1rem 1rem 0.5rem 1rem;
  }
  .social__icon {
    width: 48px;
    margin-right: 0.5rem;
  }
}
.form {
  display: flex;
  flex-direction: column;
}
.form__block {
  margin: 0.5em 0 0.5em 0;
}
.form__label {
  font-size: 1rem;
}
.form__input-text {
  padding: 0.25rem;
  font-size: 1.25rem;
  background: none;
  border-width: 1px;
  border-color: #D8D3C3;
  margin: 0.5rem 0 0.25rem 0;
}
.form__input-date {
  max-width: max-content;
  line-height: 150%;
  padding: 0.25rem;
  font-size: 1.25rem;
  background: none;
  border-width: 1px;
  border-color: #D8D3C3;
  margin: 0.5rem 0 0.25rem 0;
}
.form__input-file {
  font-size: 1.25rem;
  line-height: 150%;
  margin: 0.5rem 0 0.25rem 0;
}
.form__input-bool {
  width: 2em;
  height: 2em;
  margin: 0 2em 0 1em;
}
.form__submit-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0 0 auto;
}
.form__button {
  text-transform: uppercase;
  cursor: pointer;
  background-color: #EEE8D5;
  color: #6e6e6e;
  text-decoration: none;
  text-align: center;
  width: max-content;
  padding: 0.5rem 2rem;
  font-size: 1.25rem;
  border: none;
  transition: color 0.1s ease-in-out, outline 0.1s ease-in-out;
}
.form__button:hover {
  color: #3DC4CF;
  outline: 0.1rem solid #3DC4CF;
}

@media (max-width: 1024px) {
  .form__button {
    padding: 1rem 4rem;
    font-size: 2rem;
  }
}
.about__top {
  display: grid;
  grid-template-columns: 0.3333333333, 0.6666666667;
  grid-template-areas: "A A" "B C" "B D";
}
.about__header {
  grid-area: A;
  font-size: 2.5rem;
  margin: 0 auto 3rem auto;
}
.about__intro {
  grid-area: C;
  font-size: 1.5rem;
  text-align: justify;
  line-height: 125%;
  margin: 0;
}
.about__photo {
  grid-area: B;
  margin-right: 2rem;
  height: 405px;
  width: 283px;
  object-fit: cover;
}
.about__cv {
  margin-top: auto;
  grid-area: D;
  text-align: center;
  font-size: 1.5rem;
}
.about__button {
  display: block;
  cursor: pointer;
  background-color: #EEE8D5;
  color: #6e6e6e;
  text-decoration: none;
  text-align: center;
  width: max-content;
  padding: 0.5rem 2rem;
  font-size: 1.25rem;
  border: none;
  transition: color 0.1s ease-in-out, outline 0.1s ease-in-out;
  width: 100%;
  margin: 1rem auto 0 auto;
}
.about__button:hover {
  color: #3DC4CF;
  outline: 0.1rem solid #3DC4CF;
}
.about__story {
  margin: 3rem 0 0 0;
  text-align: justify;
  line-height: 150%;
}
.about__text {
  text-indent: 4ch;
}
.about__text:not(:first-of-type) {
  margin: 1em 0 0 0;
}

@media (max-width: 1024px) {
  .about {
    grid-template-columns: 0.4fr 0.6fr;
    grid-template-areas: "img head" "img intro" "desc desc" "button button";
  }
  .about__header {
    margin: 0 auto 2rem auto;
  }
  .about__button {
    font-size: 2rem;
  }
}
.contact {
  display: flex;
  flex-direction: column;
}
.contact__header {
  text-align: center;
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}
.contact__subtitle {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 1rem 0;
}

.entry {
  font-size: 25px;
  padding-bottom: 2rem;
}
.entry__header {
  z-index: -1;
  position: relative;
}
.entry__hero {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.entry__title {
  text-transform: uppercase;
  font-size: 2.8rem;
  margin: 0.5rem 0;
}
.entry__details {
  margin: 0.5em 0 1em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.entry__tag {
  color: #D79722;
  text-decoration: none;
}
.entry__tag:hover {
  text-decoration: underline;
}
.entry__tag:first-of-type::before {
  content: "# ";
}
.entry__tag:not(:last-of-type)::after {
  content: " | ";
}
.entry img {
  display: block;
  margin: 1.5rem auto 0 auto;
  max-width: 100%;
}
.entry__caption {
  font-size: 0.75rem;
  text-align: center;
  margin: 0.5rem 0;
}
.entry *[class^=language-] {
  background-color: #f8f8f8;
  border: 2px solid #D8D3C3;
  border-radius: 0;
  font-size: 0.75em;
  line-height: 100%;
  margin-top: 0;
  padding-bottom: 0;
}
.entry pre *[class^=language-] {
  border: none;
}
.entry code:not([class]) {
  background-color: #f8f8f8;
  border: 2px solid #D8D3C3;
  border-radius: 0;
  font-size: 0.9rem;
  padding: 0.1rem 0.2rem;
  margin: 0 0.1rem;
}
.entry__code_header {
  margin: 1.5rem 0 0 0;
  font-size: 0.8rem;
  border: #D8D3C3 2px solid;
  border-bottom: none;
  padding: 0.1rem 0 0.1rem 0.75rem;
  font-style: italic;
  background: #dfdfdf;
}
.entry__video {
  margin: 1.5rem 0 0 0;
  max-width: 100%;
}
.entry h2 {
  margin: 3rem 0 0 0;
}
.entry h3, .entry h4 {
  margin: 2rem 0 0 0;
}
.entry p {
  font-size: 1rem;
  margin: 1.5rem 0 0 0;
  padding: 0;
  text-align: justify;
  line-height: 150%;
}
.entry li {
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
  padding: 0;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .entry__caption {
    font-size: 1rem;
  }
  .entry *[class^=language-] {
    line-height: 150%;
    overflow: auto;
  }
  .entry code:not([class]) {
    font-size: 0.75rem;
  }
}
.project-cards {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 2rem;
  max-width: 1024px;
  justify-content: center;
  margin: 2rem auto 4rem auto;
}

.project-card {
  width: 22rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.062745098);
  min-height: 22rem;
  transition: box-shadow 0.2s ease-in-out;
}
.project-card:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2509803922);
}
.project-card:hover .project-card__image {
  transform: translateY(-0.5rem);
}
.project-card:hover .project-card__title {
  text-decoration: underline;
}
.project-card__image {
  width: 100%;
  max-height: 22rem;
  margin: 0 0 0.25rem 0;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.project-card__meta {
  margin: 0 1rem;
  max-width: 100%;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.project-card__tag {
  list-style: none;
  text-transform: lowercase;
  letter-spacing: 0.075rem;
  white-space: nowrap;
  color: #D79722;
}
.project-card__tag:first-of-type::before {
  content: "# ";
}
.project-card__tag:not(:last-of-type)::after {
  content: "|";
  margin: 0 0.2rem;
}
.project-card__title {
  color: #6e6e6e;
  margin: 0.5rem 0;
  line-height: 1.25em;
}
.project-card__description {
  color: #6e6e6e;
  padding-bottom: 1rem;
}

@media (max-width: 94rem) {
  .project-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 45rem;
  }
}
@media (max-width: 1024px) {
  .project-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .project-card {
    width: 100%;
  }
  .project-card__tag {
    margin-top: 0.5rem;
    font-size: 2rem;
  }
  .project-card__title {
    margin-top: 1rem;
    font-size: 2.5rem;
  }
  .project-card__description {
    font-size: 1.5rem;
  }
}
.u-bare-link {
  text-decoration: none;
}

.u-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.u-drop-shadow {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #6e6e6e;
  font-size: 20px;
  height: 100%;
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background-color: #FDF6E3;
  height: 100%;
  margin: 0;
}

.subpage__content {
  width: 1024px;
  margin: 2rem auto 4rem auto;
}

@media (max-width: 1024px) {
  .subpage__content {
    max-width: 90%;
  }
}
.error {
  margin: 0 auto;
  max-width: 30rem;
}

a:not([class]) {
  color: #D79722;
  text-decoration: none;
}
a:not([class]):hover {
  text-decoration: underline;
}

blockquote {
  margin: 0;
  padding: 0 0 0 1rem;
  font-style: italic;
  border-left: 5px solid #D8D3C3;
}

/*# sourceMappingURL=style.css.map */
