/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 15, 2019, 10:56:51 PM
    Author     : admin
*/

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

/* This demo stylesheet ONLY styles the nav menu. */
a {
    color:#33348e;
    text-decoration:none;
    text-transform:uppercase;
}
body {
    background-color: aliceblue;
    display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header1 {
    background-color: #4CAF50;
}
nav {
    background-color:#33348e;
    font-family:verdana,arial,times,serif;
    font-size:.875em;
    overflow:hidden;
    padding-left:1%;
    padding-right:4%;
    width:100%; 
    text-align:center;
}
nav ul {
    padding:0;
    margin:0;
}
nav ul li {
    list-style-type:none;
    float:left;
    position:relative;
    padding:0;
    margin:0;
}
nav ul li a {
    display:block;
    color:#fff;
    padding:.875em .625em;
    margin:0;
}
nav ul li a:hover,
nav ul li a:focus {
    background-color:#fff;
    color:#33348e;
    text-decoration:underline;
    font-weight:normal;
}
/* These selectors style the active page's menu gallery  */
#home .home a,
#aboutus .aboutus a,
#gallery .gallery a,
#activities .activities a,
#members .members a,
#membersreg .membersreg a,
#aluminas .aluminas a,
#services .services a,
#projects .projects a,
#uses .uses a,
#donation .donation a,
#contact .contact a {
    color:#33348e;
    background-color:#fff;
    pointer-events:none;
}

.footer {
 flex: 0 0 50px;/*or just height:50px;*/
  padding: 10px;
  color: blueviolet;
  text-align: center;
   margin-top: auto;
 
}
div.ex1 {
    margin-top: 2px;
  margin-right: 15%;
}
div.ex2{
    text-align: center;
vertical-align: middle;
}
a.nocaps {
    color:#33348e;
    text-decoration:none;
    text-transform:lowercase;
}
   .error-message {
                        padding: 7px 10px;
                        background: #fff1f2;
                        border: #ffd5da 1px solid;
                        color: #d6001c;
                        border-radius: 4px;
                    }
                    .success-message {
                        padding: 7px 10px;
                        background: #cae0c4;
                        border: #c3d0b5 1px solid;
                        color: #027506;
                        border-radius: 4px;
                    }
                    .demo-table {
                        align-self: center;
                        background: #d9eeff;
                        width: 80%;
                        border-spacing: initial;
                        margin: 2px 0px;
                        word-break: break-word;
                        table-layout: auto;
                        line-height: 1.8em;
                        color: #333;
                        border-radius: 4px;
                        padding: 20px 40px;
                    }
                    .demo-table td {
                        padding: 15px 0px;
                    }
                    .demoInputBox {
                        padding: 10px 30px;
                        border: #a9a9a9 1px solid;
                        border-radius: 4px;
                    }
                    .btnRegister {
                        padding: 10px 30px;
                        background-color: #3367b2;
                        border: 0;
                        color: #FFF;
                        cursor: pointer;
                        border-radius: 4px;
                        margin-left: 10px;
                    }
                    .blinking{
    animation:blinkingText 0.8s infinite;
}
@keyframes blinkingText{
		0%		{ color: #10c018;}
		25%		{ color: #1056c0;}
		50%		{ color: #ef0a1a;}
		75%		{ color: #254878;}
		100%	{ color: #04a1d5;}
	}

                    

