/* Font Styles */
@font-face {
  font-family: '';
  src: url("../fonts/");
  src: url("../fonts/") format("ttf");
  font-weight: normal; }


/* Navigation Styles */
ul {
list-style:none;    
}

ul.nav {
text-align: center;
}

ul.nav li {
display: inline-block;
margin-right: .2%;    
}

ul.nav li a {
    
text-decoration: none;
font-size: 1.135rem; /* Font size for Links */
font-family: "Oswald", sans-serif; /* Font Family for Links */
display: block;
color: #FFFFFF;
font-weight: 500;
}

ul.nav li a:hover 
{
color: #4C4945; /* Background color on hover */
}


/* Header Styles */

h1, h2, h3
{
font-family: "Oswald", sans-serif;
}    
h1
{
 font-size: 6rem;    
}

h2
{
font-size: 4rem;    
}

h1.gd
{
  color:rgb(93, 0, 252);
  background: -webkit-linear-gradient(0deg, rgba(93,0,252,1) 0%, rgba(247,101,3,1) 45%);
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
  
}

h3
{
font-size: 2rem;    
}

.logo
{
width: 100%; 
height: 35%;
background: rgb(247,101,3);
background: linear-gradient(100deg, rgba(247,101,3,1) 0%, rgba(111,0,255,1) 100%);

}
/* Main Content Styling */


* 
{
 margin: 0;
 box-sizing: border-box;   
}

p, h1, h2, h3, h4, h5, h6 
{
  overflow-wrap: break-word;
}

body  
{
  line-height: 2.0;
  -webkit-font-smoothing: antialiased;    
  background: rgb(193, 193, 193);
  color: rgb(39, 39, 39); 
}

.subhead
{
color:;    
}

.headings
{
color: rgb(247,101,3);    
}

p
{
font-family: "Open Sans", sans-serif;
}

.skills {
list-style: square;    
}

.skills li {
font-family:"Open Sans", sans-serif;    
}

.container
{
padding: 2rem; 
}

/* Image gallery */

.gallery {
	font-family: "Oswald", sans-serif;
	margin: 0;
	padding: 1rem;
	min-height: 100vh;
	display: flex;
	justify-content: left;
	align-items: left;
	background: rgb(193, 193, 193);
}

.galimg {
	width: 100%;
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 1000ms;
}

.galul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	max-width: 100%;
	width: 70rem;
}

figure {
	margin: 0;
	position: relative;
	overflow: hidden;
}

figure::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200%;
	height: 200%;
	background: rgba(93, 0, 252, 0.5);
	transform-origin: center;
	opacity: 0;
	transform: scale(2);
	transition: opacity 300ms;
}

figcaption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	place-items: center;
	text-align: center;
	padding: 1rem;
	color: white;
	font-size: 1.2rem;
	z-index: 1;
	opacity: 0;
	transition: opacity 600ms, transform 600ms;
}

a.gal_link:is(:hover, :focus) figure::after {
	opacity: 1;
}

a.gal_link:is(:hover, :focus) figcaption {
	opacity: 1;
	transition: opacity 600ms;
}

@media (prefers-reduced-motion: no-preference) {
	figcaption {
		transform: translate3d(0, 2rem, 0);
	}
	
	figure::after {
		border-radius: 50%;
		opacity: 1;
		transform: scale(0);
		transition: transform 900ms;
	}
	
	a.gal_link:is(:hover, :focus) figure::after {
		transform: scale(2.5);
	}

	a.gal_link:is(:hover, :focus) figcaption {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		transition: opacity 600ms 400ms, transform 600ms 400ms;
	}

	a.gal_link:is(:hover, :focus) img {
		transform: scale(1.2);
	}

/* End gallery */
    
/* Footer Styling */
.contacts .icons:hover {
  background-color: rgb(247,101,3);    
  text-decoration: none;  
  
    }    
    
.footer
{
text-align: center;    
}