/* document fonts */
@font-face {
    font-family: "inter";
    src: url("/fonts/Inter/Inter-VariableFont_slnt,wght.ttf");
  }
  
  @font-face {
    font-family: "ibarra";
    src: url("/fonts/Ibarra/IbarraRealNova-VariableFont_wght.ttf");
  }
  
  @font-face {
    font-family: "ibarra italic";
    src: url("/fonts/Ibarra/IbarraRealNova-Italic-VariableFont_wght.ttf");
  }
  
  /* overall general */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "inter", Haettenschweiler, "Arial Narrow Bold", Verdana, Geneva, Tahoma, sans-serif;
    word-break: break-word;
    text-decoration: none;
    list-style: none;
  }
  
  /* body general */
  body {
    background-color: #f4f3ee;
    color: #191516;
    padding-top: 67.5px;
  }
  
  section {
    padding: 1.5rem;
  }
  
  img {
    width: 100%;
    border-radius: 5%;
  }
  
  /* site navigation */
  nav {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 2%;
    transition: all 0.5s ease;
    background-color: #191516;
  }
  
  .logo {
    color: #f4f3ee;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 5px;
    padding: 5px;
  }
  
  .navlist {
    display: flex;
  }
  
  .navlist a {
    margin: 0 5px;
    padding: 5px;
    color: #f4f3ee;
    font-size: 12px;
    font-weight: 200;
    transition: all 0.5s ease;
  }
  
  .navlist a:hover {
    color: #f4f3ee;
    text-decoration: underline;
  }
  
  .p-nav {
    background-color: #f4f3ee;
  }
  
  .p-navlist {
    display: flex;
  }
  
  .p-navlist a {
    margin: 0 5px;
    padding: 5px;
    color: #191516;
    font-size: 12px;
    font-weight: 200;
    transition: all 0.5s ease;
  }
  
  .p-logo {
    color: #191516;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 5px;
    padding: 5px;
  }
  
  h1 {
    font-family: "ibarra italic";
    color: #191516;
    font-weight: 100;
    letter-spacing: -2px;
    font-size: 55px;
    line-height: 120%;
    text-align: center;
    padding: 12.5px 0;
  }
  
  h2 {
    font-family: "inter";
    color: #191516;
    text-align: center;
    font-size: 35px;
    line-height: 120%;
    font-weight: 600;
    padding: 1rem 0;
  }
  
  h3 {
    font-family: "inter";
    color: #191516;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 12.5px 0;
  }
  
  p {
    font-family: "inter";
    color: #191516;
    line-height: 120%;
    font-size: 14px;
    font-weight: 300;
    padding: 12.5px 0;
    text-align: left;
  }
  
  .p_white {
    color: #f4f3ee;
  }
  
  .button {
    padding: 30px;
  }
  
  .email-button,
  .general-button {
    display: inline-block;
    padding: 10px 30px;
    color: #191516;
    text-decoration: none;
    border-radius: 2rem;
    transition: background-color 0.3s ease;
    border: 1px solid #191516;
    font-weight: 300;
  }
  
  .email-button:hover,
  .general-button:hover {
    font-weight: 400;
    text-decoration: underline;
    border: 1.5px solid #191516;
  }
  
  .intro_base {
    background-color: #f4f3ee;
    height: 80vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .intro p {
    color: #191516;
    text-align: center;
    padding: 0 3rem;
  }
  
  #tag {
    font-size: 16px;
  }
  
  /* footer */
  footer {
    background-color: #191516;
    color: #f4f3ee;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto;
    padding: 25px 10px;
    gap: 0.5rem;
    justify-content: center;
  }
  
  footer p {
    color: #f4f3ee;
    font-size: 10px;
    padding: 0 15px;
  }
  
  .h2_white {
    text-align: left;
    color: #f4f3ee;
    font-family: "ibarra italic";
    padding: 30px 15px 70px;
    font-weight: 100;
    text-decoration: underline;
  }
  
  footer .social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: flex-start;
  }
  
  footer .soc_icons {
    padding: 15px 15px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-end;
    align-items: flex-end;
  }
  
  footer .soc_icons img {
    width: 30px;
  }
  
  .between {
    max-width: 100%;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto auto;
    gap: 2rem;
    justify-content: center;
    text-align: center;
    font-size: 15px;
  }
  
  .between a:hover,
  .between a:visited {
    color: floralwhite;
    font-weight: 400;
    text-decoration: underline;
  }
  
  @media only screen and (min-width: 601px) {
    section {
      margin: 6rem;
      display: flex;
      flex-direction: row;
      align-items: center;
    }
  
    img {
      max-width: 70%;
    }
  }
  