@charset "utf-8";
/* CSS Document */
       /* General body styling for the terminal environment */
        body {
            background-color: #1a1a1a;
            color: #e0e0e0;
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 0;
            overflow: hidden;
            height: 100vh;
        }

        #terminal-container {
            width: 100%;
            height: 95%;
            display: flex;
            flex-direction: column;
            padding: 10px;
            box-sizing: border-box;
            background-color: #000;
			border-radius: 8px;
            animation: animated-border-glow 8s infinite linear;
            overflow: hidden;
        }

        #output {
            flex-grow: 1;
            overflow-y: auto;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        .line {
            line-height: 1.2;
        }

        .prompt-line {
            display: flex;
            align-items: center;
        }

        .prompt-text {
            color: #00ff00;
            margin-right: 5px;
            flex-shrink: 0;
        }

        .input-container {
            display: flex;
            align-items: center;
            flex-grow: 1;
        }

        .current-input {
            white-space: pre;
            outline: none;
            caret-color: transparent;
            display: inline-block;
        }

        .cursor {
            background-color: #e0e0e0;
            width: 8px;
            height: 1em;
            animation: blink-animation 1s steps(2, start) infinite;
            display: inline-block;
            vertical-align: middle;
            margin-left: 2px;
        }

        @keyframes blink-animation {
            to {
                visibility: hidden;
            }
        }

        #hidden-input {
            position: absolute;
            left: -9999px;
            opacity: 0;
        }
		
    .signup {
        border: 1px solid #AA205c;
        background: #AA205c;
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 10px;
        padding-bottom: 10px;
        border-radius: 5px;
        cursor: pointer;
        outline: none;
        color: white;
        text-decoration: none;
        font-family: google;
        font-size: 18px;
        transition: all 0.3s ease;
      }
      .signup:hover {
        border: 1px solid #AA205c;
        color: white;
        box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
          0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
          0 22.3px 17.9px rgba(0, 0, 0, 0.072),
          0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
        background:#AA205c;
      }

 .btn {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 17px;
        background:#fff;
        outline: none;
        color: black;
        border: none;
        cursor: pointer;
        border-radius: 20px;
      }
.header {
        z-index: 1;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        text-align: center;

        width: 100%;

        position: fixed;

        left: 50%;

        transform: translate(-50%, 0);

        color: white;

        background-color: #FFFFFF;

        padding: 10px;

        font-family: google;
        font-size: 25px;
      }
	  
	 	.btnEffect {
            cursor: pointer;
            outline: none;
            transition: 0.2s all;
        }
        /* Adding transformation when the button is active */
          
        .btnEffect:active {
            transform: scale(0.98);
            /* Scaling button to 0.98 to its original size */
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
            /* Lowering the shadow */
        }
		
	img {
        	border-radius: 10px;
        	margin: 5px;
        	width: 90%;
      	}
		
.s-logo {
	border-radius: 10px;
	max-width:40px;
	max-height: 90%;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
	.s-logo:hover {
			animation: animated-border-glow 8s infinite linear;
			transition: 0.2s all;
			transform: scale(1.1); 
		 }	

/* Keyframes for the new animated border glow */
@keyframes animated-border-glow {
    0% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(100, 100, 255, 0.3); /* Blue */
    }
    25% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(100, 255, 100, 0.3); /* Green */
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(255, 100, 100, 0.3); /* Red */
    }
    75% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(255, 255, 100, 0.3); /* Yellow */
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(100, 100, 255, 0.3); /* Blue (back to start) */
    }
}