html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}


@media (min-width: 768px) {
  :root {
    --header-height: 216px;
  }
}

:root {
  --header-height: 180px;
  --main-color: #fffaf3;
  --main-color2: rgb(208, 215, 221);
  --text-color: rgb(48, 48, 48);
  --text-color2: rgb(241, 241, 241);

  --xs: 300px;
  --sm: 768px;
  --md: 1200px;
  --xl: 1920px;
}




html {
  height: 100%;
  box-sizing: border-box;
}

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

.body {
  background-color: var(--main-color);
  color: var(--text-color);
  height: 100%;
}

.header {
  background-color: var(--main-color2);
  display: inline-block;
  height: var(--header-height) !important;
  min-height: var(--header-height) !important;
  z-index: 5;
}

.header--sm {
  position: relative;
  top: -80px;
}

.section__centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-bg {
  background-image: url("bg-header_sm.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 0;
  background-origin: border-box;
}

@media (min-width: 768px) {
  .header-bg {
    background-image: url("bg-header.svg");
    background-size: auto;
    background-repeat: no-repeat;
    background-position-y: -90px;
    background-position-x: 50%;
    background-origin: border-box;
  }
}

@media (min-width: 1200px) {
  .header-bg {
    background-image: url("bg-header.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -90px;
    background-position-x: auto;
    background-origin: border-box;
  }
}



.header-border {
  border-bottom: 3px solid black;
}

.header-shadow {
  height: 100%;
  position: relative;
}

.header-shadow::before {
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 100%;
  content: "";
  background-color: black;
  z-index: 6;
}

.header-shadow::after {
  position: absolute;
  top: 100%;
  width: 100%;
  content: "";
  box-shadow: 0px 1px 3px 2px #242424;
}

.main-container {
  margin: auto;
  height: auto;
  width: 600px;
}

@media (min-width: 0px) {
  .main-container {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .main-container {
    width: 96%;
  }
}

.main {
  height: 100%;
}

.main-content {
  background-color: var(--main-color);
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  height: 100%;
}

.nav-list {
  display: flex;
  list-style: none;
  flex-direction: column;
}

@media (min-width: 768px) {
  .nav-list {
    display: flex;
    list-style: none;
    flex-direction: row;
  }
}

.barlow {
  font-family: "Barlow-Bold";
  text-transform: uppercase;
}

.nav-list-item {
  color: var(--text-color2);
  display: inline-block;
  padding: 5px 15px;
}

.nav-link {
  color: var(--text-color2)
}

.a {
  text-decoration: none;
}

.ul {
  list-style: none;
  text-decoration: none;
}

.li {
  display: inline-block;
}

.nav {
  padding-top: 30px;
  padding-left: 20px;
}

.nav--sm {
  position: relative;
  top: 80px;
}

@media (min-width: 768px) {
  .nav {
    padding-top: 50px;
    padding-left: 80px;
  }
}




.about-me-border {
  background-color: black;
  position: absolute;
  right: 0px;
  bottom: -23px;
  border-style: solid;
  border-top-width: 2px;
  border-left-width: 2px;
  border-color: white;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  height: 15px;
  width: 202px;
  padding-right: 34px;
  margin-bottom: 26px;
  z-index: 8;
}

.about-me {
  background-color: black;
  position: absolute;
  right: 0px;
  bottom: -25px;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 40px;
  width: 200px;
  padding-right: 30px;
  z-index: 8;
}

.about-me__link {
  outline: 0;
  text-decoration: none;
}

.about-me__text {
  color: var(--text-color2);
  font-size: 16px;
  line-height: 40px;
  margin-left: 60px;
  text-transform: uppercase;
}

.io {
  position: absolute;
  right: 20px;
  bottom: 10px;
}

@media (min-width: 460px) {
  .io {
    right: 60px;
    bottom: 10px;
  }
}


@media (min-width: 768px) {
  .io {
    right: 70px;
    bottom: 10px;
  }
}

.topic-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  padding: 0 30px;
}

.topic-list__padding {
  padding-top: 150px;
}

.t1 {
  font-family: "Barlow-Bold";
  transform: scaleY(1.2);
  letter-spacing: -0.8px;
  font-size: 22px;
}

.t1--xl {
  font-size: 50px;
  line-height: 70px;
}

.ib {
  display: inline-block;
}

.t2 {
  font-family: "Livvic-Light";
  font-size: 14px;
}

.t3 {
  font-family: "Barlow-Medium";
  font-size: 20px;
  letter-spacing: -0.8px;
  line-height: 32px;
}

.topic-list__item {
  font-family: "Barlow-Bold";
  font-size: 16px;
  letter-spacing: -0.8px;
  padding: 5px 8px;
  transform: scaleY(1.2);
  position: relative;
}

@media (min-width: 768px) {
  .topic-list__item {
    font-family: "Barlow-Bold";
    font-size: 20px;
    letter-spacing: -0.8px;
    padding: 5px 8px;
    transform: scaleY(1.2);
    position: relative;
  }
}

.topic-list__item::after {
  content: '-';
  position: absolute;
  left: 100%;
  transform: translateX(-50%);
}

.topic-list__item:last-child::after {
  content: '';
}

.headline {
  display: flex;
  justify-content: center;
}

.headline-text {
  display: inline-block;
  font-family: "Livvic-Light";
  font-size: 16px;
  line-height: 24px;
  padding: 12 30px;
}

@media (min-width: 768px) {
  .headline-text {
    font-size: 28px;
    line-height: 36px;
    padding: 0 20px;
  }
}

@font-face {
  font-family: 'Livvic-Light';
  src: url('fonts/Livvic-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow-Medium';
  src: url('fonts/Barlow-Medium.ttf') format('truetype');
}


@font-face {
  font-family: 'Barlow-Bold';
  src: url('fonts/Barlow-Bold.ttf') format('truetype');
}

.project__layout {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
}

.project__item {
  display: block;
  height: 400px;
  width: 100%;
}

@media (min-width: 768px) {
  .project__item:nth-child(1) {
    display: block;
    width: 37%;
  }

  .project__item:nth-child(2) {
    display: block;
    width: 26%;
  }

  .project__item:nth-child(3) {
    display: block;
    width: 37%;
  }

  .project__item:nth-child(n + 4) {
    display: block;
    height: 400px;
    width: 50%;
  }
}

.project__spacing {
  padding: 100px 0px 0px 0px;
}

@media (min-width: 768px) {
  .project__spacing {
    padding: 160px 50px 30px 50px;
  }
}

.project__link-container {
  height: 100%;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 3px 3px 25px 3px rgba(163, 163, 163, 0.5);
  transition: box-shadow ease 0.5s;
}

.project__link-container:hover {
  box-shadow: 3px 3px 25px 3px rgba(0, 0, 0, 0.25);
}

.project__tag {
  position: absolute;
  right: 40px;
  bottom: 30px;
  font-family: 'Barlow-Bold';
}

.project__tag-item {
  color: var(--main-color);
  display: inline-block;
  text-shadow: 1px 1px 12px #717171;
}

.project__link {
  display: block;
  padding: 20px;
  height: 100%;
}

.project__img {
  background-position: center;
  background-size: cover;
  transition: 0.3s filter;
  filter: contrast(1);
  height: 100%;
  width: 100%;
}

.project__img:hover {
  filter: contrast(1.25);
}

.footer {
  padding: 100px 30px 30px 30px;
}

.footer-content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.section-content--centered {
  margin-bottom: 100px;
  padding: 20px 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .section-content--centered {
    width: 760px;
  }
}

.section-content--right-b {
  position: relative;
}

@media (min-width: 1200px) {
  .section-content--right-b {
    transform: translateX(250px);
  }
}

.section-content--right-b::after {
  content: '';
  background-color: var(--text-color);
  border-radius: 4px;
  margin-left: 20px;
  position: absolute;
  height: 6px;
  width: 100vw;
  top: 100%;
  left: 0;
  margin-top: 100px;
}

.section-content--left-b {
  position: relative;
}

@media (min-width: 1200px) {
  .section-content--left-b {
    transform: translateX(-250px);
  }
}

.section-content--left-b::after {
  content: '';
  background-color: var(--text-color);
  border-radius: 4px;
  margin-left: 20px;
  position: absolute;
  height: 6px;
  width: 100vw;
  top: 100%;
  right: 0;
  margin-top: 100px;
  }

.project__simple-tag {
  margin: 20px 0;
}

.project__images {
  display: flex;
  padding-top: 120px;
  flex-wrap: wrap;
}

.project__image {
  cursor: pointer;
  padding: 0 20px 0 0;
  width: 67%;
}

.project__image:nth-child(2) {
  width: 33%;
}

.project__image:last-child {
  padding: 0;
}

.project__image-b {
  height: 300px;
  background-position: center;
  background-size: cover;
}