@import url('https://fonts.googleapis.com/css2?family=Castoro+Titling&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body{
	font-family: 'Lato', sans-serif;
	line-height: 1.5;
  }
  
body{
            animation: fadeInAnimation ease 3s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

a {

text-decoration:none ;
color:#c30756;

}

a:hover{
color:#70C901;

}

.headercontainer {
	
	background:#111;
	margin:0 auto;
	color:#fff;
	padding :20px;	
	display:flex;
    justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
    flex:1;
}

.overlay-content ul{
	display:flex;
	flex-direction:column;
    justify-content:center;
	align-items:center;
	flex-wrap:wrap;
    flex:1;
	list-style-type:none;
}

.headercontainer a{
	text-decoration:none;
	color:white;
	font-size:21px;
	padding:15px;
	margin:10px auto ;
}
.headercontainer a:hover{
	color:#70C901;
}
.green {
  font-size: 35px;
  background: -webkit-linear-gradient(#FDFC47, #24FE41);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white {
 color:#fff;	
 font-size: 35px;
}


/* for responsive navbar code   */



.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 20%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #70C901;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
  
}




/*Responsive nav code end*/



/*Index page*/

.homeintro {
	background:#111;
	margin:50px auto;
	padding : 20px;
	max-width:1100px;
	border-radius : 20px;
        color : white ;
}


  .introflexcontainer{
    
	display:flex;
    justify-content:center;
	align-items:center;
	flex-wrap:wrap;
    flex:1;
	padding:10px;
	margin:15px auto;
	max-width:1100px;
	  
  }
  .introflex-item{
	background:#fff;
	border-radius:8px;
	padding:10px;
	display:flex;
	flex-direction:column;
    justify-content:flex-start;
	align-items:center;
	flex-wrap:wrap;
    flex:1;
	margin:10px;
    min-height:300px;
	max-height:600px;
	
  }
  
  .introflex-item img {
	width:200px;
	height:230px;  
  }
  .intro h1{
	  text-align:center;
	  color:#fff;
	  font-size:35px;
	  
  }

@media screen and (max-width: 650px) {
	.homeintro {
		margin:0 auto;
		border-radius:0px;
	}

}


/*Index Page end*/


/*FOR FORMS*/

	* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  resize: vertical;
  margin: 8px 0;
  box-sizing: border-box;
  border:none;
  border-bottom: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

input[type=text]:focus {
  border:none;
  border-bottom: 3px solid #70C901;
}

input[type=password]:focus {
  border:none;
  border-bottom: 3px solid #70C901;
}

input[type=radio] {
            accent-color:#70C901;
        }
		
		
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #101010;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #70C901;
  color: #fff;
}

.container {
  border-radius: 5px;
  background-color: #fff;
  color:#111;
  padding: 30px;
  max-width:800px;
  margin:0 auto;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/*FORM ENDED*/


.homeintro h2 {
	text-align:center ;
}
