
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: rgb(245, 239, 240);
}




h1 {
  color: #8e44ad; 
  font-size: 2.3rem;
  font-weight: bold;
  text-align: right;
}


.copyright {
  font-size: 1.4rem;
  color: rgb(255, 151, 168);
}


    .ticker {
      position: absolute;
      white-space: nowrap;
      will-change: transform;
      animation: scroll-right 24s linear infinite;
    }

    @keyframes scroll-right {
      from {
        transform: translateX(20%);
      }
      to {
        transform: translateX(-100%);
      }
    }

.bitcount-regular {
  
  color: #4cbe7c;
  font-family: "Bitcount", system-ui;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 2rem;
  font-style: bold;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0.5,
    "ELSH" 0,
    "ELXP" 0;
}


a {
  text-decoration: none;
}
a:hover {
  color: orange;
  text-shadow: #4cbe7c;
  text-decoration: none;
}


.zebrafish {
  height: 190px;
  width: 190px;
  border-radius: 100%;

}

.talher {
  width: 80px;
  transform: rotate(2deg);
        animation: shake-talher 1.7s linear infinite; 
}


    @keyframes shake-talher{
      from {
        transform: rotate(2deg);
      }
      to {
        transform: rotate(-2deg);
      }
    }

  .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 1rem;
    min-height: 100vh;
    padding: 1rem;
  }
  .moirai-one-regular {
  text-align: center;
  font-family: "Moirai One", system-ui;
  font-size: 2.6rem;
  transform: rotate(9deg);
  font-weight: 400;
  font-style: normal;

  color: #8e44ad;
  text-shadow:
    1px 1px 2px rgb(225, 24, 243),
    0 0 1em rgb(250, 9, 210),
    0 0 0.2em rgb(179, 15, 105);
}
  .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
  }
  .row2 .col3 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .row3 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: center;
  }
  .row3 .image {
    grid-column: 1; 
  }
  .row3 img {
    width: 100%;
    height: auto;
  }
  .row3 .text {
    background: #f0f0f0;
    grid-column: 2;
    padding: 1rem;
  }
  footer {
    color: #ccc;
    text-align: center;
    align-self: flex-end;
    padding: 1rem;
    font-size: 0.875rem;
  }

 @media (max-width: 1080px) {
  .row2,
  .row3 {
    grid-template-columns: 1fr;
  }

  .row3 .image {
    grid-column: auto;
    order: 1;
    width: 70%;
    margin: 0 auto;
  }

  .row3 .text {
    order: 2;
  }
}

  .col3 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image {
    width: 50%;
    height: auto;
  }
  