﻿ body {
	 background-color: #363636;
         font-family: Arial, sans-serif;
         margin: 20px;
		 color:white;
         }
         .form-group {
         margin-bottom: 15px;
         }
         label {
			 color:white;
         display: block;
         margin-bottom: 5px;
         }
         input[type="text"] {
         width: 400px;
         padding: 8px;
         box-sizing: border-box;
         }
         button {
         padding: 10px 15px;
         background-color: #007bff;
         color: white;
         border: none;
         cursor: pointer;
         }
         button:hover {
         background-color: #0056b3;
         }
         .HideElement {
         display: none !important;
         }

.rainbow_title_animatedX {
    background: linear-gradient(to right, #140afc, #aeabff, #140afc, #aeabff, #140afc, #aeabff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 30s ease-in infinite;
    background-size: 400% 100%;
}

.rainbow_title_animated {
    background: linear-gradient(to right, #ffffff, #ffffff, #C7E9ED , #add8e6, #87cefa, #6495ed, #6495ed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 20s ease-in infinite;
    background-size: 400% 100%;
}


@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

u {
	text-decoration: underline;
}