body {
  background-color: #000000;
}
.h33{
  color: #9400a7; font-size: 48px;
}
:root {
  --color-black: #000000;
  --color-white: #9400a7;
  --size: 200px;
}
.catii {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}
.cat {
  position: relative;
  height: var(--size);
  width: calc(var(--size) * 1.13);
}
.ear {
  position: absolute;
  top: -30%;
  height: 60%;
  width: 25%;
  background: var(--color-white);
}
.ear::before,
.ear::after {
  content: '';
  position: absolute;
  bottom: 24%;
  height: 10%;
  width: 5%;
  border-radius: 50%;
  background: var(--color-black);
}
.ear::after {
  transform-origin: 50% 100%;
}
.ear--left {
  left: -7%;
  border-radius: 70% 30% 0% 0% / 100% 100% 0% 0%;
  transform: rotate(-15deg);
}
.ear--left::before,
.ear--left::after {
  right: 10%;
}
.ear--left::after {
  transform: rotate(-45deg);
}
.ear--right {
  right: -7%;
  border-radius: 30% 70% 0% 0% / 100% 100% 0% 0%;
  transform: rotate(15deg);
}
.ear--right::before,
.ear--right::after {
  left: 10%;
}
.ear--right::after {
  transform: rotate(45deg);
}
.face {
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--color-black);
  border-radius: 50%;
}
.eye {
  position: absolute;
  top: 35%;
  height: 30%;
  width: 31%;
  background: var(--color-white);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.eye::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  border-radius: 0 0 50% 50% / 0 0 40% 40%;
  background: var(--color-black);
  animation: blink 4s infinite ease-in;
}
@keyframes blink {
  0% { height: 0; }
  90% { height: 0; }
  92.5% { height: 100%; }
  95% { height: 0; }
  97.5% { height: 100%; }
  100% { height: 0; }
}
.eye::before {
  content: '';
  position: absolute;
  top: 60%;
  height: 10%;
  width: 15%;
  background: var(--color-white);
  border-radius: 50%;
}
.eye--left {
  left: 0;
}
.eye--left::before {
  right: -5%;
}
.eye--right {
  right: 0;
}
.eye--right::before {
  left: -5%;
}
.eye-pupil {
  position: absolute;
  top: 25%;
  height: 50%;
  width: 20%;
  background: var(--color-black);
  border-radius: 50%;
  animation: look-around 4s infinite;
}
@keyframes look-around {
  0% { transform: translate(0) }
  5% { transform: translate(50%, -25%) }
  10% { transform: translate(50%, -25%) }
  15% { transform: translate(-100%, -25%) }
  20% { transform: translate(-100%, -25%) }
  25% { transform: translate(0, 0) }
  100% { transform: translate(0, 0) }
}
.eye--left .eye-pupil {
  right: 30%;
}
.eye--right .eye-pupil {
  left: 30%;
}
.eye-pupil::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -5%;
  height: 20%;
  width: 35%;
  border-radius: 50%;
  background: var(--color-white);
}
.muzzle {
  position: absolute;
  top: 60%;
  left: 50%;
  height: 6%;
  width: 10%;
  background: var(--color-white);
  transform: translateX(-50%);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
}
.gallery-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.thumbnails {
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.thumbnails div {
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: #9400a7;
  border-radius: 100%;
}
.thumbnails div.highlighted {
  background-color: #ffffff;
}
.thumbnails div:nth-child(n+7) {
  display: none;
}

.slides {
  margin-top: 5rem;
  margin-bottom: 4rem;
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  width: 100vw;
  height: 80vh;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: pointer;
}
.slides > div {
  position: relative;
  scroll-snap-align: start;
  width: 100vw;
  height: 100vh;
}
.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.slides > div:hover .image-text {
  opacity: 1;
}
.slides::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .slides { 
    height: 400px;
  }
  .image-text {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .slides {
    height: 300px;
  }
  .image-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  .slides {
    height: 200px;
  }
  .image-text {
    font-size: 1rem;
  }
  .h33{
    font-size: 34px;
  }
}
