
body{
	background-color: #384AE6;
	margin: 0px;
	font-family:Verdana, Arial, Geneva, Arial Black;
	font-size: 14px;
	margin: 10px;
	min-width: 1000px;
}

.loader-wrapper{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #384AE6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader{
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    animation: loader 2s infinite ease;
}

.loader-inner{
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

.HelpfulTips{
	font-size: 250%;
    margin: 10px;
    text-align: center;
}

@keyframes loader{
    0% {transform: rotate(0deg);}
    25% {transform: rotate(180deg);}
    50% {transform: rotate(180deg);}
    75% {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}

@keyframes loader-inner{
    0% {height: 0%;}
    25% {height: 0%;}
    50% {height: 100%;}
    75% {height: 100%;}
    100% {height: 0%;}
}



#header{
	background-color: #000000;
	margin: 10px;
	padding: auto;
	height: 100px;
	border-radius:5px;	
	display: flex;
	justify-content: center;
}

h1 {
	font-size: 500%;
	text-align: center;
	color:#384AE6;
	margin: auto 20px;
}

#navbar ul{
	background-color: #000000;
	margin: 10px;
	border-radius:5px;
	list-style-type: none;
	text-align:center;
	padding:5px;
}

#navbar ul li{
	display: inline;	
}

#navbar ul li a{
	text-decoration: none;	
	padding: .2em 1em;
	color: #fff;
	background-color: #000;
}

#navbar ul li a:hover{
	text-decoration: none;	
	padding: .2em 1em;
	color: #000;
	background-color: #FFF;
}

#SubHeader{
	font-size: 250%;
	text-align: center;
	text-decoration: underline;
}

#footer{
	background-color: #000000;
	margin: 10px;
	border-radius:5px;
	text-align: center;
	clear: both;
}

.main {
	background-color: #000000;
	margin: 10px;
	padding: 20px;
	border-radius:5px;
	font-size: 100%;
	color: #FFFFFF;
	display: flex;
	place-items: center;
}

#para{
	max-width: auto;
	margin: 10px auto;
	padding: 30px;
	text-align: left;
	width: 100%;
}

#center{
	text-align: center;
	max-width: 400px;
	margin: auto;
	padding: 30px;
}

#container {
    display: flex;
    justify-content: space-between;
}

#altcenter {
    text-align: center;
    padding: 30px;
    width: 100%;
}

#form-wrapper {
    max-width: 720px;
    margin: auto;
}

#left, #altcenter, #right {
	box-sizing: border-box;
    margin: 0 10px;
}

#left, #right {
	max-width: 500px;
	width: flex;
	flex: 1 1 auto;
	margin: 10px;
	padding: 20px;
	background-color: #000000;
	color: #FFFFFF;
	border-radius: 5px;
	
}

#left {
	
	margin-left: auto;
	margin-right: auto; 
}

#right {
	margin-left: auto; /* Add some space between the left and right sections */
	margin-right: auto;
}

/* General Row Styling */
.main .Row1, .main .Row2, .main .Row3, .main .Row4, .main .Row5, .main .Row6, .main .Row7 {
    margin: 100%;
	width: 100%;
	display: flex;
    justify-content: space-evenly; /* Distribute buttons evenly */
    align-items: center; /* Center buttons vertically */
    flex-wrap: wrap; /* Wrap buttons to next line if space is insufficient */
    margin-bottom: 20px; /* Spacing between rows */
}

/* Button Styling for Larger Buttons */
.main .Row1 button, .main .Row2 button, .main .Row3 button, .main .Row4 button, .main .Row5 button, .main .Row6 button, .main .Row7 button {
    size: 25px 25px;
	padding: 15px 30px; /* Increased padding for larger buttons */
    font-size: 2em; /* Larger text size */
    min-width: 120px; /* Minimum width for buttons */
    text-align: center; /* Center text inside button */
    /* Other styles remain the same */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 600px) {
    .main .Row1 button, .main .Row2 button, .main .Row3 button, .main .Row4 button, .main .Row5 button, .main .Row6 button, .main .Row7 button {
        padding: 10px 20px; /* Slightly smaller padding on smaller screens */
        font-size: 1em; /* Normal text size on smaller screens */
        min-width: 80px; /* Smaller minimum width for buttons */
    }
}