
		 
		*{
			margin:0;
			padding:0;
			box-sizing: border-box;
			text-decoration:none;
			list-style: none;
		}

		/* start top header list */
		.head-top{
			width: 100%;
			height:60px;
			background-color:blue;
			display:flex;
		}

		.head-top .head-middle{
			width:35%;
		}

		.head-top ul{
			line-height: 60px;


		}

		.head-top ul li{
			float: left;
			color:white;
			font-size:20px;
			margin-left:40px;
		}
		.head-top ul li:hover{
			color:grey;
		}

		.head-top ul li a{
			color:white;
		}

		.head-top p{
			line-height:60px;
			font-size:30px;
			padding-left: 15px;
			font-weight:bold;
			color:white;

		}




		.container2{
			width: 100%;
			height: 540px;
			background-color:#2F4F4F;
			display:flex;
		
		}

		.inside-container{
			width: 500px;
			margin:5% auto;
			
		}


		/* Start Register bottom in conatiner*/


		.container2 .btn, .btn-fees{
			width: 120px;
			height:40px;
			background-color:orange;
			border: none;
			cursor: pointer;
			color:white;
			border-radius:10px;
			font-size:15px;
		}
        .container2 .btn-fees{
        	background-color:lightgoldenrodyellow;
        	color: black;
        	margin-left:10px;
        }

        .container2 .btn-fees:hover{
        	color:green;
        	font-weight: bold;
        }

		.container2 .btn:hover{
			background-color:darkorange;
		}

        /* Start Register bottom in conatiner*/


	
		