body { 
	font-family: Arial, sans-serif; 
	margin: 10px;
}

h1 {
	margin-top: 40px;
}

textarea { 
	width: 100%; 
	height: 200px; 
	margin-bottom: 10px; 
	font-family: monospace; 
}

.result { 
	font-weight: bold; 
	margin-top: 10px; 
}

button { 
	margin-right: 10px; 
	width: 200px;
}

input[type="text"] { 
	width: 300px; 
	margin-bottom: 10px; 
}

.styledred {
	border: 0;
	line-height: 2.5;
	padding: 0 20px;
	margin: 10px 10px;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	border-radius: 10px;
	background-color: rgba(220, 0, 0, 1);
	background-image: linear-gradient(to top left,
					  rgba(0, 0, 0, 0.2),
					  rgba(0, 0, 0, 0.2) 30%,
					  rgba(0, 0, 0, 0) );
	box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6),
		    inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}

.styledred:hover {
	background-color: rgba(255, 0, 0, 1);
}

.styledred:active {
	box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6),
    		    inset 2px 2px 3px rgba(0, 0, 0, 0.6);
}

.styledblue {
	border: 0;
	line-height: 2.5;
	padding: 0 20px;
	margin: 10px 10px;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	border-radius: 10px;
	background-color: rgba(4, 0, 220, 1);
	background-image: linear-gradient(to top left,
					  rgba(0, 0, 0, 0.2),
					  rgba(0, 0, 0, 0.2) 30%,
					  rgba(0, 0, 0, 0) );
	box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6),
		    inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}

.styledblue:hover {
	background-color: rgba(0, 104, 220, 1);
}

.styledblue:active {
	box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6),
    		    inset 2px 2px 3px rgba(0, 0, 0, 0.6);
}
.styledgreen {
	border: 0;
	line-height: 2.5;
	padding: 0 20px;
	margin: 10px 10px;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	border-radius: 10px;
	background-color: rgba(64, 235, 52, 1);
	background-image: linear-gradient(to top left,
					  rgba(0, 0, 0, 0.2),
					  rgba(0, 0, 0, 0.2) 30%,
					  rgba(0, 0, 0, 0) );
	box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6),
		    inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}

.styledgreen:hover {
	background-color: rgba(110, 245, 100, 1);
}

.styledgreen:active {
	box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6),
    		    inset 2px 2px 3px rgba(0, 0, 0, 0.6);
}

.logo {
    position: absolute; /* Positioning the logo absolutely */
    top: 5px; /* Adjust as needed */
    right: 5px; /* Adjust as needed */
    height: 75px; /* Adjust height as needed */
    width: 75px;  /* Adjust width as needed */
}

.container {
}
