@charset "utf-8";
/* CSS Document */
	html,
	body 
	{background: #013220;
	margin:0;
	padding:0;
	height:50%;
	text-align: center;
	color: #7d7d7d;	
	font-family: sans-serif;
}
#footer {
		padding-top: 3em;
		position:relative;
		bottom:0;
		width:100%;
		height:60px;			/* Height of the footer */
	
}
/* Starts star header*/
section {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #000200;
	display: flex;
	justify-content: center;
	align-items: center;
}
section .star{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	animation: animate 8s ease-in-out infinite,
					backgroundmove 16s linear infinite;
}
section .star.star1{
	animation-delay: 0s;
	background: url('../starsbanner/star1.png');
}
section .star.star2{
	animation-delay: -1s;
	background: url('../starsbanner/star2.png');
}
section .star.star3{
	animation-delay: -2s;
	background: url('../starsbanner/star3.png');
}
section .star.star4{
	animation-delay: -3s;
	background: url('../starsbanner/star4.png');
}
section .star.star5{
	animation-delay: -4s;
	background: url('../starsbanner/star5.png');
}
section .star.star6{
	animation-delay: -5s;
	background: url('../starsbanner/star6.png');
}
section .star.star7{
	animation-delay: -6s;
	background: url('../starsbanner/star7.png');
}
section .star.star8{
	animation-delay: -7s;
	background: url('../starsbanner/star8.png');
}


@keyframes animate {
	0%, 20%, 40%, 60%, 80%, 100%
	{opacity: 0;}
	10%, 30%, 50%, 70%, 90%
	{opacity: 1;}
}
@keyframes backgroundmove {
	0%{transform: scale(1);}
	100%{transform: scale(2);}
}
/* ends star header*/


/* adding styles for my social media links */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 100%;

}

.fa:hover {
    opacity: 1;
}
.fa-twitter {
  background: #FFD700;
  color: white;
}

.fa-linkedin {
  background: #FFD700;
  color: white;
}

.fa-instagram {
  background: #FFD700;
  color: white;
}
/* ending styles for social medias */

header {

	font-family: sans-serif;
	margin-top: .2em;
	margin-bottom: .2em;
	border-radius: 0.5em;
	font-size: 3em;

}
p{font-size: 1.5em;}

h1 {
	text-align: center;
	color: #7d7d7d;
}
nav {
	text-align: center;
	float: center;
	font-family: sans-serif;
	font-weight: bold;
	position: absolute;
	top: 10px;
	font-size: 1.5em;
	z-index: 1;
}

nav a {
	color: #7d7d7d;
	text-decoration: none;
	float: center;
	position: flex;
	justify-content: space-around;
}
nav a:hover {
		color: #FFD700;
		font-style: italic;

}
img {
	max-width: 50%;
	height: 50%;
}
/* styles for the mobile view */
#hamburgerIcon {
	position: absolute;
	top: 1em;
	right: 1em;
	display:none;
	cursor: pointer;
}
#hamburgerIcon div{
	position: relative;
	width: 35px;
	height: 3px;
	background-color: #FFD700;
	margin: 6px 0;
	transition: .04s;
}
.open .bar1 {
	-webkit-transform: rotate(-45deg) translate(-6px, 6px);
	transform: rotate(-45deg) translate(-6px, 6px);
}
.open .bar2{
	opacity: 0;
}
.open .bar3 {
	-webkit-transform: rotate(45deg) translate(-6px, -8px);
	transform: rotate(45deg) translate(-6px, -8px);
}
.open .mobileMenu {
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: flex-start;
	color: #FFD700;
}
.mobileMenu{
	display: none ;
	position: absolute;
	top: 1em;
	right: 1em;
	left: 3;
	height: calc(100vh -50px);
	width: 100%;
	z-index: 10;


}
nav a, .mobileMenu a {
    color: #7d7d7d; /* Same color as desktop links */
    text-decoration: none;
    font-family: sans-serif; /* Matching font */
    font-weight: bold;
    font-size: 1em; /* Adjust based on design */
    text-align: center;

}

nav a:hover, .mobileMenu a:hover {
    color: #FFD700; /* Same hover effect */
    font-style: italic;
}



@media only screen and (max-width: 600px)
{
	nav a{
		display:none;
	}
	#hamburgerIcon{
		
		display:block;
	}
}