@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,900;1,900&display=swap');
        
        html {
            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(117, 169, 68);
            font-weight: 900;

        }

        .portfolio-button {
            height: 7vh;
            width: 30vw;
            margin: 0.5vw;
            margin-top: 1vw;
            background-color:  rgb(67, 67, 67);
            border: 0px;
            border-radius: 0.5vw;
            align-self: center;
            font-family: 'Poppins', serif;
            position: relative;
            font-weight: 600;
            font-size: 2vw;
            color:rgb(117, 169, 68);
            transition-duration: 0.4s;
        }
        .portfolio-button:hover {
            background-color:  rgb(23, 23, 23);
            font-size: 2.2vw;
            /* height: 11vh; */

        }

        .intro-text p {
            font-size: 2vh;
            font-style: italic;
            font-weight: 600;
        }

        body{
        font-family: 'Poppins', serif;
        background: rgb(34, 34, 34);
        }
        h1, a{
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #222;
        }
        p, h2, h3, ul {
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: rgb(117, 169, 68);;
        }

        /* 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 li{
        list-style-type: none;
        margin-left: 20px;
        }
        nav h1{
        font-size: 3em;
        }
        nav p, nav a{
        color: #777;
        font-weight: 300;
        }
        footer{
        color: #777;
        text-align: center;
        margin: 80px auto 20px;
        }
        h2{
        margin-bottom: 40px;
        }
        h3{
        text-transform: capitalize;
        margin-bottom: 8px;
        }
        .content{
        margin-left: 20px;
        }

        /* index styles */

        /* details styles */

        /* create styles */
        .create-blog form{
        max-width: 400px;
        margin: 0 auto;
        }
        
        p {
            color: rgb(117, 169, 68);
        }

        .about {
            padding: 20px;
        }
        .about p {
            color: rgb(117, 169, 68);
            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;
        }

        .create-blog input,
        .create-blog textarea{
        display: block;
        width: 100%;
        margin: 10px 0;
        padding: 8px;
        }
        .create-blog label{
        display: block;
        margin-top: 24px;
        }
        textarea{
        height: 120px;
        }
        .create-blog button{
        margin-top: 20px;
        background: crimson;
        color: white;
        padding: 6px;
        border: 0;
        font-size: 1.2em;
        cursor: pointer;
        }

        .container {
          background-color: rgb(226, 219, 178);
          width:100%;
          display: flex;
          align-items: center;
          align-content: center;
          font-family: Poppins;
          font-weight: 900;
          font-style: italic;
          height: 35vh;
          overflow: hidden;

        }
        
        .scroll {
          white-space: nowrap;
          margin: 0 2em;
          transform: rotate(-3deg);
          transform-origin: 30%;
        }

        .scroll div {
          display: flex;
          gap: 2em;
        }

        .scroll p {
          font-size: 10vh;
          color: #000; /* Fallback for older browsers */
          color: rgba(168, 160, 127, 0.601);
          margin-bottom: 0;
          line-height: 10vh;
          
        }

        .rightToLeft {
          position:relative;
          animation: RightToLeft 40s infinite linear;
          z-index: 2;
        }

        .leftToRight {
          position:relative;
          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;
          margin: 20;
          font-size: 2vh;
          color: #222;
          transition-duration: 0.4s;
          
        }

        .pulse h1 {
            font-style:italic;
            transform: rotate(-3deg) translateY(-50%);
            
        }
        .pulse h2 {
            font-style:normal;
            font-weight: 300;
        }
        .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%)
          }
        }