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

html {
  background-image: linear-gradient(to bottom left, black, black, #EAB7C7, white, white, #EAB7C7, black);
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: stretch;
}

.homepageanchor {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.heading{
  margin: 0 auto;
}

.abril-fatface-regular {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}

.headersection {
  font-family: "Times New Roman", Times, Arial, sans-serif;
  display: flex;
  background-image: linear-gradient(to bottom right, gray, #EAB7C7, #EAB7C7, white, #EAB7C7, #EAB7C7, gray);
  text-shadow: 0.3125rem 0.3125rem 0.5rem pink;
  font-size: clamp(1.8rem, calc(7vw + 1rem), 5rem);
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: space-between;
  align-items: center;
}



.kiddtattoosheader {
  font-size: clamp(2.4rem, calc(7vw), 5rem);
  text-align: center;
  white-space: normal;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: space-between;
  align-items: center;
  font-weight: 200;
}


#kiddtattoologo {
  max-width: 19%;
  min-width: 14%;
  height: auto;
  margin: -5px;
  animation: spin 3s ease-in-out 1;
}

/*@keyframes spin {
  0% {

  }
  100% {
    transform: rotate(360deg);
    border-radius: 50%;
  }
}*/


.tattoo-gun {
  height: 3.3rem;
  width: 3rem;
  margin: 4px 4px 5px 10px;
  animation-name: leave;
  animation-duration: 3s;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: space-between;
  align-items: center;
}

@keyframes leave {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-55px);
  }
}

.tattoo-gun2 {
  height: 3.3rem;
  width: 3rem;
  margin: 4px 4px 5px 10px;
  animation-name: leaverev;
  animation-duration: 3s;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: space-between;
  align-items: center;
}

@keyframes leaverev {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(55px);
  }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-image: linear-gradient(to right, pink, white);
  padding: 0.5rem 0;
  margin: 0;
  border-bottom: 2px solid white;
  border-top: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

ul {
  font-family: "Times New Roman", Times, Arial, sans-serif;
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(2.5rem, 3vw, 3.5rem);
}

ul li {
  position: relative;
}


ul li a {
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  color: black;
  transition: all 0.3s ease;
  border-radius: 5px;
}

ul li a:hover {
  color: rgb(235, 46, 156);
  background-color: rgb(229, 183, 213);
}

.navbar li:not(:first-child)::before {
  content:"";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.5rem;
  background-color: rgba(0, 0, 0, 0.3);
}


.menu-toggle {
    display: none;
}


@media (max-width: 900px) {
  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .navbar li:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
        width: 100%;
        padding: 1rem;
        border: none;
        background-image: linear-gradient(to right, black, #EAB7C7, white, #EAB7C7, black);
        cursor: pointer;
        color: black;
        font-family: "Times New Roman", Times, Arial, sans-serif;
        font-size: clamp(2.5rem, 3vw, 3.5rem);
    }

    .nav-links {
        display: none;
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar ul {
      display:none;
    }

    .navbar ul.active {
      display: flex;
      flex-direction: column;
    }
}

.aboutme-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1300px;
  margin: 5rem auto;
  padding: 3rem;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  font-family: "Times New Roman", Times, Arial, sans-serif;
}


@media (max-width: 900px) {
  .aboutme-section {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
}

.paragraphlink {
  text-decoration: none;
}


.pt-serif-bold {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}

h1 {
  align-content: space-between;
  color: white;
  font-size: clamp(2rem, calc(5vw + 1rem), 4rem);
  font-family: "Times New Roman", Times, Arial, sans-serif;
}


.aboutmedisplay{
  width: 100%;
  max-width: 500px;
  border: 6px solid #eab7c7;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: .4s;
}

.aboutmedisplay:hover{
  transform: scale(1.02);
}


.aboutmeheading {
  font-size: clamp(1.4rem, calc(5vw + 1rem), 4.5rem);
  color: black;
  font-family: "PT Serif";
}


p{
  font-family: "PT Serif";
  font-size: clamp(1.5rem,1.2vw + .8rem,2rem);
  line-height: 1.8;
  max-width: 650px;
  margin: 0;
}

a:link {
  color: black;
}

#footerinfo:link {
  color: rgb(223, 43, 133);
}


footer {
  justify-content: center;
  padding: 30px 25px;
  border: 25px;
  background-image: linear-gradient(to bottom left, grey, #EAB7C7, white, white, white, #EAB7C7, grey);
  width: 100%;
  box-shadow: 3px 5px 12px 2px black;
  text-align: center;
}

.jersey-15-regular {
  font-family: "Jersey 15", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.contact {
  text-decoration: underline;
  font-size: clamp(1.4rem, calc(5vw + 1rem), 4.2rem);
  font-family: "Jersey 15";
}

.insta-link {
  font-size: clamp(1.2rem, calc(4vw + 1rem), 3.8rem);
  font-family: "Times New Roman", Times, Arial, sans-serif;
}

#insta-icon {
  text-align: center;
}

#footerinfo {
    display: flex;
    justify-content: center;
    overflow: auto;
    text-align: center;
}

#footerinfo a:visited {
  color: rgb(223, 43, 133);
}

.contact-info {
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: hidden;
  text-align: center;
}


