@charset "utf-8";
/* Global Styles */

body {
	margin-top:0px;
	margin-bottom:0px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	text-align: center;
}
/* Header */
header {
	text-align: center;
	display: block;
}
 
/* Media query for Mobile devices*/
@media only screen and (min-width : 0px) and (max-width : 480px) {
	/* Header */
	header {
		width: 100%;
		float: none;
	}
	header .profileLogo  {
		background-position: center top;
		background-repeat: no-repeat;
		background-size: contain;
		background-image:url("../images/GGSweb_400_850_v01.jpg"); 
		height: 850px;
	}
 
}

/* Media Query for Tablets */
@media only screen and (min-width : 481px) and (max-width : 768px) {
	/* Header */
	header {
		width: 100%;
		float: none;
	}
	header .profileLogo  {  
		background-position: center top;
		background-repeat: no-repeat;
		background-size: contain;
		background-image:url("../images/GGSweb_768_1500_v01_.jpg"); 
		height:1500px;
	}
	
}


/* Desktops and laptops  */
@media only screen and (min-width:769px) {
	/* Header */
	header .profileLogo {   
		background-position: center top;
		background-repeat: no-repeat;
		background-size: contain;
		background-image:url("../images/GGSweb_1366_1800_v01.jpg"); 
		height:1800px;
	}
	
	.weblink{
		padding-left:10%;
		display: flex;
		width: 30%;
		margin: 0 auto;
		padding-top:100%;
		position: relative;
	}
	
	.link_col{ 
		display: flex;
		width: 100%;
		padding-bottom:50%;
	}
	
	span{
		width: 30%;
	}
    .link_fb_icon{
		flex: 50%; 
		background-repeat: no-repeat;
		background-size: contain;
		background-image:url("../images/fb_icon.png"); 
		width:50px;
		height:50px; 
	}
    .link_yt_icon{
		flex: 50%;
		background-position: center ;
		background-repeat: no-repeat;
		background-size: contain ;
		background-image:url("../images/yt_icon.png"); 
		width:50px;
		height:50px; 
		
	}
    .link_ig_icon{
		flex: 50%;
		background-repeat: no-repeat;
		background-size: contain;
		background-image:url("../images/ig_icon.png"); 
		width:50px;
		height:50px;
	};
}

