html {
    scroll-behavior: smooth;
}

body {
    background-color: #f1efe8;
    max-width: 800px;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 30px;
    color: #3B3638;
    font-weight: 400;
}

h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    color: #3B3638;
    font-weight: 300;
}

p {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #3B3638;
    line-height: 25px;
    text-transform: lowercase;
}

.mylinks-wrapper a{
    margin-right: 10px;
}

header {
    text-align: left;
    margin: auto;
    padding-top: 100px;
    max-width: 800px;
}

header h1 {
    animation: bounceInDown 1s ease-in-out;
}

.hashtagwrap {
    text-wrap: balance;
    margin: 0 auto;
}

.hashtagstyle {
    text-transform: lowercase;
    background-color: #3b3638f0;
    color: #bfc9ff;
    font-size: 13px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    padding: 4px 10px 4px 10px;
    border-radius: 3px;
    line-height: 30px;
    text-wrap: nowrap;
    white-space: nowrap;
}

.about {
    text-align: left;
    padding-top: 10px;
    text-wrap: balance;
}

.contactsection {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.marketingpitch a {
    font-size: 13px;
    text-decoration: none;
    color: #3B3638;
    padding: 0;
}

.notionbutton {
    background-color: transparent;
    text-transform: lowercase;
    border: 1px solid #71c34b;
    color: #3b3638;
    font-size: 12px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    padding: 4px 8px 4px 8px;
    border-radius: 3px;
}

.contact {
    display: flex;
    gap: 20px;
}

.work {
    padding-top: 0px;
    margin: 0 auto;
}

.workandinfo {
    display: flex;
    justify-content: space-between;
    padding: 0px 10px 0px 10px;
}

.item {
    background-color: #3b363811;
    padding: 10px;
    border-radius: 4px;
    animation: fadeIn 1s ease-in;
    margin-bottom: 15px;
}

.item:hover {
    background-color: #3b36381c;
    transition: .1s ease-in-out;
    cursor: help;
}

.item p {
    margin: 0 auto;
    text-wrap: balance;
}

.thingsidid {
    background-color: transparent;
    text-transform: lowercase;
    border: 1px solid #71c34b;
    color: #3b3638;
    font-size: 12px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    padding: 4px 8px 4px 8px;
    border-radius: 3px;
    line-height: 30px;
    text-wrap: nowrap;
    white-space: nowrap;
    text-align: justify;
}

.thingsidid a {
    color: #3b3638;
    text-decoration: none;
}

.item2 {
    background-color: #3b363841;
    padding: 10px;
    border-radius: 2px;
    margin-top: 20px;
}

.lansanglinks-container {
    display: none;
    margin: auto;
    padding: 0px 20px 20px 20px;
    text-align: center;
    align-items: center;
    animation: fadeInDown .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.lansanglinks {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.cklinks-container {
    display: none;
    margin: auto;
    padding: 0px 20px 20px 20px;
    text-align: center;
    align-items: center;
    animation: fadeInDown .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.cklinks {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.timmylinks-container {
    display: none;
    margin: auto;
    padding: 0px 20px 20px 20px;
    text-align: center;
    align-items: center;
    animation: fadeInDown .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.timmylinks {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
}

.tattoolinks-container {
    display: none;
    margin: auto;
    padding: 0px 20px 20px 20px;
    text-align: center;
    align-items: center;
    animation: fadeInDown .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.tattoolinks-container a {
    text-decoration: none;
    color: #3B3638;
}

.tattoolinks {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.tip {
    position: relative;
    display: inline-block;
    cursor: help;
  }

  /* Tooltip text */
  .tip .tooltiptext {
    display: none;
    width: 120px;
    background-color: #74c84a90;
    text-align: center;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    top: 7px;
    right: 160px;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    padding: 4px;
  }

  .tooltiptext p {
    margin: 0;
    line-height: 20px;
    color: #3B3638;
    text-wrap: nowrap;
  }


  .tip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  /* Bouncing animation */
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .tip .tooltiptext {
    animation: bounce .7s infinite;
  }

  .tip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px; 
    border-width: 5px;
    border-style: solid;
    border-color: #74c84a90 transparent transparent transparent;
  }