@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,900;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Charis+SIL:ital,wght@0,400;0,700;1,400;1,700&display=swap');
        
        html,body
{
            width: 100%;
            height: 100%;
            margin: 0px;
            padding: 0px;
            overflow-x: hidden; 
}
        
        #aboutlist {
            background-color: rgb(117, 169, 68);
            height: 50vh;
            width: 120%;
        }

        

        .intro {
            background-color: rgb(34, 34, 34);
            transform-origin: center;
            height:50vh auto;
            width: 100%;
        }
        
        .intro-text {
            font-size: 4vh;
            background-color:rgba(34, 34, 34);
            margin: 1vw;
            padding: 1vw;
            color: rgb(68, 100, 169);
            font-weight: 900;

        }

        .portfolio-button {
            height: 8vh;
            width: auto;
            margin: 2vw;
            
            background-color: rgb(21, 47, 95);
            border: 0px;
            border-radius: 0.5vw;
            align-self: center;
            font-family: 'Poppins', serif;
            position: relative;
            font-weight: 600;
            font-size:2vh;
            color: rgb(255, 255, 255);
            transition-duration: 0.4s;
        }
        .portfolio-button:hover {
            background-color:  rgb(47, 82, 146);
            font-size: 2.2vh;
            /* height: 11vh; */

        }

        .intro-text p {
            font-size: 2vh;
            font-style: italic;
            font-weight: 600;
        }

        body{
        font-family: 'Poppins', serif;
        background: rgb(255, 255, 255);
        margin: 0 auto;
        width: 100%;
        }

        h1, a{
        margin: 0 auto;
        padding: 0;
        text-decoration: none;
        color: #222;
        }

        p, h2, h3, ul {
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: rgb(68, 100, 169);;
        }

        /* nav & footer styles */
        nav{
        display: flex;
        justify-content: space-between;
        
        text-transform: uppercase;
        
        }
        nav ul{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        
        }
        
        nav h1{
        font-size: 3em;
        }
        nav p, nav a{
        color: #777;
        font-weight: 300;
        }
        footer{
        color: #777;
        text-align: center;
        margin: 80px auto 20px;
        }
        
        h3{
        text-transform: capitalize;
        margin-bottom: 8px;
        }
        

        
        
        
       

        .about {
            padding: 20px;
        }
        .about p {
            color: rgb(68, 100, 169);
            font-size: 3vh;
            font-weight: 600;
        }

        .about h2 {
            color: rgb(117, 169, 68)
        }

        .list {
            padding: 20px;
        }

        .scroll {
            align-items: center;
            align-self: center;
            text-align: center;
        }

       

        .container {
          background-color: rgb(255, 255, 255);
          width:100%;
          display: flex;
          font-family: Poppins;
          font-weight: 900;
          font-style: italic;
          height: 50vh;
          overflow: hidden;
          position:relative;

        }
        
        .scroll {
          white-space: nowrap;
          margin: 0;
          transform: rotate(-3deg);
          transform-origin: 10%;
        }

        .scroll div {
          display: flex;
          gap: 2em;
        }

        .scroll p {
          font-size: 10vh;
          color: #000; /* Fallback for older browsers */
          color: rgba(0, 60, 255, 0.163);
          margin-bottom: 0;
          line-height: 10vh;
          
        }

        .rightToLeft {
          
          animation: RightToLeft 40s infinite linear;
          z-index: 2;
        }

        .leftToRight {
          
          animation: LeftToRight 40s infinite linear;
          z-index: 2;
        }

        .pulse {
          z-index: 3;
          width: 100%;
          
          position: absolute;
          text-align: center;
          align-self: center;
          align-items: center;
          justify-content: center;
          
          font-size: 3vw;
          color: #222;
          transition-duration: 0.4s;
          
        }

        .gallery-item {
          width: 33vw;
        }

        .gallery{
          
          position: absolute;
          display: flex;
          flex-wrap: wrap;
          justify-content: flex-start;
        }


        

        .pulse h1 {
            font-style:italic;
            transform: rotate(-3deg) ;
            
        }
        .pulse h2 {
            font-style:normal;
            font-size: 2.5vw;
            
            /* transform: translateY(5vh); */
            
        }
        .pulse img {
            
            max-height: 15vh;
        }

        #image-carousel {
          height: 30vw;
          background-color:  rgb(226, 219, 178);
        }
        

        @keyframes RightToLeft {
          from {
            transform: translateX(0%)
          }
          to {
            transform: translateX(-50%)
          }
        }

        @keyframes LeftToRight {
          from {
            transform: translateX(-50%)
          }
          to {
            transform: translateX(0%)
          }
        }