html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: black;
  }
  
  .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40vh;
  }
  
  .title h1 {
    margin: 0;
    padding: 0;
    font-size: min(9vw, 20vh);
    font-weight: 900;
    background: linear-gradient(45deg, cyan, magenta, yellow);
    background-clip: text;
    color: transparent;
    background-size: 400% auto;
    animation: color 20s ease infinite;
  }
  
  .text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    width: 100%;
    height: 100%;
    hyphens: auto;
  }

  .text p {
    text-align: justify;
    max-width: min(90vw, 80vh);
   }
  
  .title .link {
    display: inline-block;
    font-size: 3rem;
    text-decoration: none;
    background: linear-gradient(45deg, cyan, magenta, yellow);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 400% auto;
    animation: color 20s ease infinite;
    transition: transform 0.3s ease;
  }
  
  .title .link:hover {
    transform: scale(1.2);
  }

  .profile {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  
  .profile img {
    padding: 0;
    margin: 0;
    border-radius: 50%;
    height: 30vh;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .rainbow-text {
    background: linear-gradient(45deg, cyan, magenta, yellow);
    -webkit-background-clip: text;
    font-weight: 900;
    background-clip: text;
    color: transparent;
    background-size: 400% auto;
    animation: color 3s ease infinite;
  }

  @keyframes color {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 100%;
    }
    100% {
      background-position: 0% 50;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }