body {
  font-family: system-ui;
  font-weight: 200;
  margin: 0px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  align-items: center;

  a {
    text-decoration: none;
    color: #5f6478;
  }

  .page-content {
    max-width: 1000px;
    padding: 40px;
    color: #3a3a3a;
    flex: 1;
  }

  @media (max-width: 600px) {
    .page-content {
      padding: 60px 5px;
    }
  }

  .main-img {
    padding: 30px 40px;

    img {
      width: 100%;
    }
  }

  .mt-30 {
    margin-top: 30px;
  }

  .subtitle {
    font-weight: 400;
    padding-top: 25px;
    font-size: 16px;
    margin: 0px;
    color: #5f6478;
  }

  .txt-right {
    text-align: right;
  }
  .navbar {
    display: flex;
    gap: 40px;
    padding: 5px 40px;
    align-items: center;
  }
  @media (max-width: 600px) {
    .navbar {
      display: none;
    }
  }

  .nav-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;

    a {
      text-decoration: none;
      color: #5f6478;
    }
  }
  .nav-item {
    a {
      text-decoration: none;
      color: #5f6478;
      font-weight: 400;
    }
  }
  .flex-wrapper {
    display: flex;
    gap: 30px;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0 40px;
  }

  @media (max-width: 600px) {
    .flex-wrapper {
      gap: 10px;
      flex-direction: column;
    }
  }

  .flex-item {
    width: 100%;
  }
  .bio-img {
    width: inherit;
  }

  .justify {
    text-align: justify;
    line-height: 2;
  }
  @media (max-width: 600px) {
    .justify {
      line-height: 1.2;
    }
  }

  .title {
    padding: 5px 40px;
    display: flex;
    justify-content: flex-end;
  }
  .space {
    letter-spacing: 1px;
  }
  .h2-title {
    font-size: 18px;
    font-weight: 400;
  }

  .lines-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20;
    line-height: 2;
  }

  .contact-wrapper {
    padding: 30px 40px;

    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .icon {
    max-width: 20px;
  }

  .insta-container {
    display: flex;
    gap: 10px;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 40px;
  }

  .column {
    flex: 22%;
    max-width: 22%;
    padding: 0 4px;
  }

  .column img {
    margin-top: 8px;
    vertical-align: middle;
  }

  @media (max-width: 800px) {
    .column {
      flex: 45%;
      max-width: 45%;
    }
  }

  @media (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }

  .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  hr.solid {
    border-top: 1px solid #bbb;
  }

  footer {
    padding: 30px 40px;

    width: 100%;
    height: auto;
    background-color: #e6e4df;
    color: #3a3a3a;
  }

  #menuToggle {
    display: none;
    position: fixed;
    top: 50px;
    left: 50px;

    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
  }
  @media (max-width: 600px) {
    #menuToggle {
      display: block;
    }
  }

  #menuToggle a {
    text-decoration: none;

    transition: color 0.3s ease;
  }

  #menuToggle a:hover {
    color: #383838;
    font-weight: bolder;
  }

  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0;
    z-index: 2;

    -webkit-touch-callout: none;
  }

  #menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: #5f6478;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #5f6478;
  }

  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }

  #menu {
    position: absolute;
    max-width: 400px;
    width: 100vw;
    max-height: 100vh;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    box-sizing: border-box;
    overflow-y: auto;
    background: #e6e4df;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  #menu li {
    padding: 10px 0;
    font-size: 22px;
  }

  #menu li label {
    cursor: pointer;
  }

  #menuToggle input:checked ~ ul {
    transform: none;
  }
}
