   /* Global styles */
        body {
            background: linear-gradient(to right,#202124 , #464647);
            background-size: cover;
            font-family: 'Tahoma', 'Arial', sans-serif;
        }
        
        .h1 {
	       color: transparent; 
            background-image: url('/images/silver.jpg'); 
            background-size: cover;
          -webkit-background-clip: text; 
            background-clip: text;
            font-size: 22px;
            font-weight: bold;
            text-align: center;
            margin-right: 15px;
            margin-bottom: 20px;
}
		

       nav ul {
            list-style-type: none;
            margin: 0;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            max-width: 800px;
            text-align: left;
        }
	    nav ul:hover {
            box-shadow: 0 10px 14px rgba(0, 0, 0, 0.2);
        }
		
        nav ul li {
            display: inline-block;
            margin-right: 30px;
        }
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
			box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }
        nav ul li a:hover {
            color: #424242;
        }
         .container {
            margin-top: 0;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            text-align: center;
            animation: fadeIn 1s ease-in-out;
            max-width: 800px;
            padding: 0;
            align-items: center;
            transition: all 0.3s ease;
        }
		
		                   

        /* Darken the background color of the textarea */
        #textInput, #output {
            background: linear-gradient(to right,#202124 , #464647);
            color: #ecf0f1; /* Text color inside the textarea */
        }
		
		 #textInput:hover, #output:hover {
            box-shadow: 0 10px 14px rgba(0, 0, 0, 0.3);
        }

        /* Main content styles */
        main {
		
	    	margin-top:0;
            padding: 30px 0;
            animation-name: rotate;
            animation-duration: 0.7s;
        }
     
        .text-type {
            display: none;
            font-size: 16px;
            font-weight: bold;
            margin-top: 0;
            color: #ffffff;
            animation: fadeInUp 1s;
        }

        .btn {
            margin: 10px;
            color: #fff;
            border: none;
            border-radius: 5px;
            padding: 7px 15px;
            font-size: 13px;
            cursor: pointer;

            transition: background-color 0.3s;
			
        }

        .btn:hover {
            animation-name: rotate;
            animation-duration: 0.7s;
        }

		
    /* Footer styles */
    .footer {
    color: transparent; 
    background-image: url('/images/silver.jpg'); 
    background-size: cover;
    -webkit-background-clip: text; 
    background-clip: text;
    text-align: center;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 
    max-width: 380px;
    width: 100%;
    animation: slideIn 1s ease-in-out;
    margin: 0px auto;
    margin-top: 50px;
    justify-content: center;
}      
   
   @keyframes rotate {
            0% {
                transform: rotate(0);
            }
            100% {
                transform: rotate(360deg);
            }
        }
		
		
.button-bar {
  display: flex;
  gap: 10px;
  justify-content: right;
  padding: 10px;
}

.button {
  position: relative;
  width: 90px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #cc0000;
  border-radius: 10px;
  background-color: #e50000;
  overflow: hidden;

}

.button, .button__icon, .button__text {
  transition: all 0.3s;
}

.button .button__text {
  transform: translateX(15px);
  color: #fff;
  font-weight: 500px;
  justify: center;
  font-size: 17px;
}

.button .button__icon {
  position: absolute;
  transform: translateX(90px);
  height: 100%;
  width: 39px;
  background-color: #fa2f2f;
  display: flex;
  align-items: center;

}

.button .svg {
  width: 20px;
}

.button:hover {
  background: #fa2f2f;
}

.button:hover .button__text {
  color: transparent;
}

.button:hover .button__icon {
  width: 148px;
  transform: translateX(0);
}

.button:active .button__icon {
  background-color: #b20000;
}

.button:active {
  border: 1px solid #b20000;
}

.ui-btn {
  --btn-default-bg: #202121;
  --btn-padding: 10px 20px;
  --btn-hover-bg: rgb(51, 51, 51);
  --btn-transition: .3s;
  --btn-letter-spacing: .1rem;
  --btn-animation-duration: 1.2s;
  --btn-shadow-color: rgba(0, 0, 0, 0.137);
  --btn-shadow: 0 2px 10px 0 var(--btn-shadow-color);
  --hover-btn-color: #7241FF;
  --default-btn-color: #fff;
  --font-size: 16px;
  /* 👆 this field should not be empty */
  --font-weight: 600;
  --font-family: Menlo,Roboto Mono,monospace;
}

/* button settings 👆 */

.ui-btn {
  box-sizing: border-box;
  padding: var(--btn-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-btn-color);
  font: var(--font-weight) var(--font-size) var(--font-family);
  background: var(--btn-default-bg);
  cursor: pointer;
  transition: var(--btn-transition);
  overflow: hidden;
  box-shadow: var(--btn-shadow);
  border-radius: 10px;
  border: 2px solid #2A2B3A;
}

.ui-btn span {
  letter-spacing: var(--btn-letter-spacing);
  transition: var(--btn-transition);
  box-sizing: border-box;
  position: relative;
  background: inherit;
}

.ui-btn span::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  background: inherit;
}

.ui-btn:hover, .ui-btn:focus {
  background: var(--btn-default-bg);
  box-shadow: 0px 0px 10px 0px rgba(119, 68, 255, 0.70);
  border: 2px solid #7241FF;
  ;
}

.ui-btn:hover span, .ui-btn:focus span {
  color: var(--hover-btn-color);
}

.ui-btn:hover span::before, .ui-btn:focus span::before {
  animation: chitchat linear both var(--btn-animation-duration);
}

@keyframes chitchat {
  0% {
    content: "#";
  }

  5% {
    content: ".";
  }

  10% {
    content: "^{";
  }

  15% {
    content: "-!";
  }

  20% {
    content: "#$_";
  }

  25% {
    content: "№:0";
  }

  30% {
    content: "#{+.";
  }

  35% {
    content: "@}-?";
  }

  40% {
    content: "?{4@%";
  }

  45% {
    content: "=.,^!";
  }

  50% {
    content: "?2@%";
  }

  55% {
    content: "\;1}]";
  }

  60% {
    content: "?{%:%";
    right: 0;
  }

  65% {
    content: "|{f[4";
    right: 0;
  }

  70% {
    content: "{4%0%";
    right: 0;
  }

  75% {
    content: "'1_0<";
    right: 0;
  }

  80% {
    content: "{0%";
    right: 0;
  }

  85% {
    content: "]>'";
    right: 0;
  }

  90% {
    content: "4";
    right: 0;
  }

  95% {
    content: "2";
    right: 0;
  }

  100% {
    content: "";
    right: 0;
  }
}

.notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: rgba(0, 0, 0, 0.6);
            color: #03a130;
            padding: 10px 20px;
            border-radius: 5px;
            display: none;
            z-index: 1000;
        }