root{
   --pri_color :#1a76d1;
   --sec_color :#e12454;
   --uni_color :#223a66;
}

*{
	margin : 0;
	margin : 0;
}

body{
	font-family :-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
a:hover{
	text-decoration : none;
	cursor : pointer;
}


/*****FIRST SECTION*******/
.first_section{
	width : 100%;
	margin-top : 80px;
}

/****SECOND SECTION*******/

.second_section{
   width :100%;
   margin-top : 50px;
   margin-bottom : 50px;
}

.second_section_content{
	margin-left : 5%;
	margin-right : 5%;
}

.second_section_content p{
	font-size : 1.2rem;
	color : #3e3e3e;
}

.name_flex{
	width : 100%;
	display : flex;
	flex-direction : column;
	column-gap : 0;
	row-gap : 20px;
}
.name_flex>div{
	width : 100%;
}


input[type = "submit"]{
	border : none;
	outline : none;
	color : #ffffff;
	background-color :var(--uni_color);
	border-radius : 5px;
	width : 125px;
	height : 45px;
	font-weight : 600;
	margin-top : 20px;
}


.home{
	border : none;
	outline : none;
	color : #ffffff;
	background-color :var(--sec_color);
	border-radius : 5px;
	width : 125px;
	height : 45px;
	font-weight : 600;
	margin-top : 20px;
}

small{
	font-size : 0.75rem;
	color :#de4453;
}

/****MEDIA QUERIES******/

@media(min-width : 1280px){
/*****FIRST SECTION*******/
    .first_section{
    	width : 100%;
		margin-top : 100px;
    }

/****SECOND SECTION*******/

    .second_section{
       width :100%;
       margin-top : 50px;
       margin-bottom : 50px;
    }
    
    .second_section_content{
    	margin-left : 5%;
    	margin-right : 5%;
    }
    
    .second_section_content p{
    	font-size : 1.2rem;
    	color : #3e3e3e;
    }
    
    .name_flex{
    	width : 100%;
    	display : flex;
    	flex-direction : row;
    	column-gap : 50px;
    	row-gap : 0;
    }
    /* .name_flex>div{ */
    	/* width : 100%; */
    /* } */
    
    
    input[type = "submit"]{
    	border : none;
    	outline : none;
    	color : #ffffff;
    	background-color :var(--uni_color);
    	border-radius : 5px;
    	width : 125px;
    	height : 45px;
    	font-weight : 600;
    	margin-top : 20px;
    }
    
    
    .home{
    	border : none;
    	outline : none;
    	color : #ffffff;
    	background-color :var(--sec_color);
    	border-radius : 5px;
    	width : 125px;
    	height : 45px;
    	font-weight : 600;
    	margin-top : 20px;
    }
    
    small{
    	font-size : 0.75rem;
    	color :#de4453;
    }
	
	
}