body {
  font-family: "Atkinson Hyperlegible", serif;
  margin: 0;
  padding: 0;
  color: #30362F;
  background-color: #fffaf5;
  max-width: 1297px;
  margin: 0px auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a {
  color: #30362F;
  font-size: 16px;
}

.item {
  flex-shrink: 0;
}

#menu {
  display: flex;
  gap: 32px;
  height: 160px;
}
#menu a {
  line-height: 160px;
  vertical-align: middle;
}

#title {
  text-align: right;
  text-decoration: none;
  font-size: 32pt;
}

/* MAIN CONTENT */
main {
  display: grid;
}

#hero_splash {
  border-radius: 8px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 55%;
  margin-bottom: 100px;
}

#projects {
  display: flex;
  flex-direction: column;
  gap: 128px;
}
#projects a {
  text-decoration: none;
}

.project {
  display: flex;
  gap: 64px;
}

.p_right {
  flex-direction: row-reverse;
}
.p_right .p_info {
  display: flex;
  align-items: flex-end;
}

.p_item {
  flex: 0 0 419px;
}

.p_img {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
  transition-duration: 300ms;
}
.p_img img {
  display: block;
  border-radius: 8px;
}

.p_img:hover {
  opacity: 75%;
}

.p_img_title {
  color: black;
  font-size: 20px;
  height: 64px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  left: 0;
  position: absolute;
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p_info {
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p_info h3 {
  font-size: 24px;
  margin: 0;
}
.p_info p {
  font-size: 14px;
  margin: 0;
}

.p_info_button {
  font-size: 14px;
  padding: 16px 32px 16px 32px;
  border-radius: 4px;
  border: solid 1px black;
  width: fit-content;
  margin-top: 16px;
  transition-duration: 300ms;
}

.p_info_button:hover {
  background: #FFFBDB;
  border: solid 1px #A59132;
}

/* PROJECT */
.main_project {
  display: flex;
  flex-direction: column;
  max-width: 1297px;
  gap: 80px;
  align-items: center;
}
.main_project h1 {
  font-size: 48px;
  line-height: 48px;
}
.main_project h2 {
  font-size: 32px;
  line-height: 48px;
}
.main_project h4 {
  font-size: 16px;
  line-height: 20px;
}
.main_project .title {
  text-align: center;
}
.main_project .subtitle {
  text-align: center;
}
.main_project .project_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: justify;
  width: 507px;
  font-size: 14px;
  line-height: 21px;
}
.main_project .img-3-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1039px;
  width: 100%;
}
.main_project .img-3-grid .img-grid-item {
  text-align: justify;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.main_project .img-3-grid .img-grid-item img {
  max-height: 224px;
}
.main_project .img-3-grid .img-grid-item p {
  font-size: 14px;
  line-height: 1.2em;
  max-width: 256px;
}
.main_project .image_wide {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main_project .image_wide p {
  text-align: right;
  color: #E7A1A6;
}

/* ABOUT ME */
#about {
  display: flex;
  flex-direction: row;
  gap: 88px;
  max-width: 1015px;
  margin: 60px auto;
}
#about img {
  width: 355px;
  border-radius: 8px;
  height: fit-content;
}
#about #about_info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: justify;
  line-height: 1.5em;
}
#about #about_info h1 {
  font-size: 36px;
  line-height: 45px;
  margin: 0;
}
#about #about_info h1 span {
  color: #DA7422;
}
#about #about_info #about_text {
  display: flex;
  flex-direction: column;
}
#about #about_info ul {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 0;
  margin: 0;
}
#about #about_info a {
  color: #625834;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 80px 0 16px;
}
footer p {
  opacity: 0.6;
}
footer div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
footer div a {
  color: #30362F;
  text-align: center;
}

/* FONT */
.atkinson-hyperlegible-regular {
  font-family: "Atkinson Hyperlegible", serif;
  font-weight: 400;
  font-style: normal;
  color: #30362F;
}

.atkinson-hyperlegible-bold {
  font-family: "Atkinson Hyperlegible", serif;
  font-weight: 700;
  font-style: normal;
  color: #30362F;
}

.atkinson-hyperlegible-regular-italic {
  font-family: "Atkinson Hyperlegible", serif;
  font-weight: 400;
  font-style: italic;
}

.atkinson-hyperlegible-bold-italic {
  font-family: "Atkinson Hyperlegible", serif;
  font-weight: 700;
  font-style: italic;
}

/* HELPER CLASSES */
.drawing {
  position: relative;
}
.drawing .drawing-blending {
  mix-blend-mode: multiply;
}
.drawing .colorbox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #30362F;
  mix-blend-mode: lighten;
}

.backdrop-image-container {
  width: 1039px;
  position: relative;
  opacity: 10%;
}

.backdrop-image {
  position: absolute;
  z-index: -1;
  max-width: 1039px;
  width: 1039px;
  transform: translateY(-30%);
}

.fixed {
  flex: 0 0 355px; /* Fixed width of 200px */
}

.flexible {
  flex: 1; /* Takes up the remaining space */
}

/* RESET */
*, ::before, ::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

ol, ul {
  list-style: none;
}

img, svg, video, canvas, picture {
  display: block;
  max-width: 100%;
}

input, button, select, textarea {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6, span {
  overflow-wrap: break-word;
}

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