:root {
  --primary-color: #000;
  --secondary-color: #E80C0C;
  --accent-color: #F2ECEC;
  --ivy: ivypresto-display, serif;
  --haas: neue-haas-grotesk-text, sans-serif;
}

body {
  background-color: var(--accent-color);
  color: var(--primary-color);
  text-align: center;
  margin: 0;
  line-height: 1.6em;
  font-family: var(--haas);
}

button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 20px 50px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  margin: 50px 0;
}

.caption, button {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: var(--haas);
  font-weight: 500;
  line-height: 1;
}

section {
  min-height: 100vh;
  box-sizing: border-box;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  section {
    padding: 20px;
  }
}

.section-title {
  font-size: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1em;
  margin-left: 1em;
  color: var(--secondary-color);
  font-weight: normal;
  margin-bottom: 50px;
  font-family: var(--ivy);
}
@media (max-width: 768px) {
  .section-title {
    font-size: 40px;
    letter-spacing: 0.5em;
    margin-left: 0.5em;
    margin-bottom: 30px;
  }
}

#intro {
  justify-content: space-between;
}
#intro .intro-content {
  width: 100%;
}
#intro h1 img {
  width: 90%;
  max-width: 1080px;
  margin: auto;
}
#intro h2 {
  width: 600px;
  max-width: 80%;
  font-family: var(--ivy);
  font-weight: 600;
  margin: auto;
}

#work .section-title {
  margin-bottom: 100px;
}
#work .case-study {
  position: relative;
  padding: 100px;
}
#work .case-study img {
  position: absolute;
  top: 0px;
  left: -50px;
  height: 100%;
  width: 10vw;
  background: black;
  -o-object-fit: cover;
     object-fit: cover;
  /* display: block; */
}
#work .case-study h3 {
  font-size: 39px;
  margin-bottom: 10px;
  font-family: var(--ivy);
  font-weight: 600;
  font-style: italic;
  margin: 0;
  line-height: 1.1em;
}
#work .case-study h4 {
  font-size: 39px;
  margin-bottom: 20px;
  font-family: var(--ivy);
  font-weight: 300;
  font-style: italic;
  margin: 0;
  line-height: 1.1em;
}
#work .case-study .info {
  display: flex;
  flex-direction: row;
  gap: 50px;
  width: 80%;
  padding: 50px;
  margin: auto;
  font-family: var(--haas);
  font-weight: 300;
}
#work .case-study .info .cs1 {
  padding-left: 5%;
}
#work .case-study p {
  text-align: left;
  line-height: 1.6em;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #work .case-study {
    padding: 20px;
    width: 100%;
  }
  #work .case-study h3, #work .case-study h4 {
    font-size: 30px;
  }
  #work .case-study img {
    display: none;
  }
  #work .case-study .info {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 0px;
  }
  #work .case-study .info .cs1,
  #work .case-study .info .cs2 {
    width: 100%;
    padding: unset;
  }
}

#resume .resume-section {
  width: 80%;
  text-align: left;
  padding: 50px 10%;
}
#resume .resume-section h3 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}
#resume .resume-section ul {
  width: 100%;
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-width: 30%;
       column-width: 30%;
  -moz-column-gap: 50px;
       column-gap: 50px;
  list-style: none;
  text-indent: 0;
  padding: 0;
  text-align: left;
  font-family: var(--ivy);
  font-weight: 300;
  font-style: normal;
  line-height: 1.6em;
  font-size: 24px;
}
@media (max-width: 768px) {
  #resume .resume-section {
    width: 100%;
  }
  #resume .resume-section ul {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-width: 100%;
         column-width: 100%;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}/*# sourceMappingURL=style.css.map */