/*Generic style sheet to be applied to all pages*/
body {
  background-color:;
  background-image:;
  margin: 0;
  padding: 0;
  margin-top:0px;
}

.header_container{
	display:flex;
	justify-content:space-evenly; 
	align-items:center; 
	flex-wrap:wrap;
	flex-grow: 1;
	flex: 1 1 100px;
	background-color:red; 
	width: 100%; 
	margin:auto;
	margin-top:0px;
	position: sticky;
    top: 0;
	}

.logo_properties{
    height:50px; 
	width:auto;
	border-radius:10px;
}

.navbar {
    display: flex;
	flex-wrap:wrap;
    justify-content:space-between; /* Distribute space between nav items */
	align-items:center;
    padding: 10px;
}

.navbar div {
    margin: 5px;
    padding: 10px;
	color:white;
}

.navbar a {
	text-decoration:none;
}

.social_container{
	display:flex; 
	align-items:center;
}

.social_media_properties{
	height:20px; 
	width:20px; 
    margin:10px;
}

.main_head_banner{
  width:80%;
  margin:auto;
}

.main_grid_container{
	display: grid;
    grid-template-columns: auto auto auto; /* Creates three columns */
    grid-template-rows: auto; /* Creates one row, height determined by content */
    gap: 10px; /* Space between grid items */
	width:80%;
	margin:auto;
	border:2px solid green;
	padding:5px;
}


.footer_social_media_container
{
	display:flex; 
	gap:10px;
	}
	
.footer_social_media_text_properties{
	 padding-top:8px;
	 color:navy !important;
}	

.footer_navbar {
    display: inline;
    justify-content:space-evenly; /* Distribute space between nav items */
	align-items:center;
    padding: 10px;
}

.footer_navbar_last{
	display: flex;
    justify-content:end; /* Distribute space between nav items */
	gap:10px;
	align-items:center;
}
	
.footer_social_media_container_last img
{
	 width:20px; 
	 height:20px;
}
.footer_navbar div {
    margin: 5px;
    padding: 10px;
	color:white;
}

hr{
	 width:80%; 
	 margin:auto;
	 margin-top:5px;
}

.final_footer_container{
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:80%;
	margin:auto;
}

.final_footer_items{
	width:auto; 
}
.footer_span{
	 font-weight:bolder;
}

/*Adjusting Column Layout for Tablet*/
@media screen and (max-width: 600px) {
.navbar {
    flex-direction: column; /* Stack nav items vertically on smaller screens */
	}

.social_container{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	margin:auto;
	background-color:black;
	}

.header_container{
	flex-direction: column;
	padding:0px;
	}
	
.main_head_banner{
	padding:0px;
}

.footer_social_media_text_properties{
	visibility:display;
	 padding-top:8px;
	 color:navy !important;
}

footer
{
	padding:0px;
}

.final_footer_container{
	display:flex;
}

.final_footer_items{
	text-align:center;
}

.footer_navbar_last{
	display:flex;
	gap:1.5px;
}
/*Adjusting Column Layout for Mobile*/
@media screen and (max-width: 480px) {

}