@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&family=Libre+Baskerville&family=Open+Sans:ital,wght@1,300&family=Pacifico&family=Permanent+Marker&family=Roboto+Mono:wght@100&family=Ubuntu:wght@300&display=swap");

html {
	scroll-behavior: smooth;
}
/* top navigation bar */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: rgb(3, 3, 26);
}

.navbar {
	display: flex;
	justify-content: space-around;
	top: 0;
	background-color: rgb(2, 2, 19);
	z-index: 2;
	position: sticky;
	padding: 15px;
}

.navbar ul {
	display: flex;
	list-style: none;
	gap: 20px;
}

.navbar ul li {
	font-family: "Ubuntu", sans-serif;
	font-size: xx-large;
}

.navbar ul li a {
	text-decoration: none;
	color: gold;
	transition: all.5s ease;
}

.navbar ul li a:hover {
	background-color: white;
	color: black;
	box-shadow: 0 0 10px white;
	padding: 10px;
}

#Home {
	min-height: 93.2vh;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	padding: 0 50px;
	gap: 6rem;
}

.homepage_pic img {
	height: 696px;
	width: 696px;
	border: 3px solid gold;
}

.homepagetext {
	display: flex;
	flex-direction: column;
	font-family: "Indie Flower", cursive;
	text-align: center;
	justify-content: center;
	align-items: center;
	flex: 1;
}

.homepagetext #title {
	font-size: 8rem;
}

@keyframes emojiAnimation {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
	100% {
		transform: translateX(0);
	}
}

.homepagetext #title,
.homepagetext #subtitle {
	color: gold;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
}

.homepagetext #subtitle {
	font-size: 60px;
}

.homepagetext #interest {
	font-size: 100px;
	color: gold;
	padding-top: 100px;
	overflow: hidden;
}

#Aboutme {
	height: 120vh;
	padding-top: 5rem;
}

.abhead {
	color: rgb(45, 45, 43);
	text-align: center;
	font-size: 50px;
	font-family: "Ubuntu", sans-serif;
}

#abt {
	color: black;
	font-size: 25px;
	justify-content: center;
}

.whoami {
	width: 80%;
	margin: auto;
	background-color: blanchedalmond;
	padding: 3rem;
	box-shadow: -29px 21px 100px 23px rgba(60, 6, 6, 0.9);
	border-radius: 20px;
	font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
		"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	transition: all 0.2s ease-in-out;
}

.myinterest {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.myinterest h1 {
	color: gold;
	font-size: 60px;
	margin-top: 80px;
	margin-left: 70px;
	font-family: "Ubuntu", sans-serif;
}

.cards {
	display: flex;
	gap: 20px;
}

.cardimg img {
	width: 450px;
	height: 450px;
	transition: all 0.3s linear;
	filter: blur(0px);
}

.cards:hover .cardimg img:not(:hover) {
	filter: blur(2px);
}

.cardimg img:hover {
	scale: 1.03;
	box-shadow: -29px 21px 100px 23px rgba(45, 44, 44, 0.9);
	border-radius: 20px;
}

#Contact {
	height: 20vh;
	padding-top: 20px;
	align-items: center;
	display: flex;
	flex-direction: column;
}

.contact1 {
	color: gold;
	font-size: 40px;
	font-family: "Ubuntu", sans-serif;
}

/* Social Media Icons */
.socialicons {
	display: flex;
	justify-content: center;
	align-items: center;
}

.socialicons a {
	color: whitesmoke;
	text-decoration: none;
	margin: 0 10px;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	padding: 10px;
}

.socialicons a:hover {
	color: gold;
}

.socialicons i {
	font-size: 30px;
}

.socialicons img:hover {
	fill: gold;
}

.footer {
	color: gold;
	font-size: 20px;
	padding-bottom: 20px;
	justify-content: center;
	align-items: center;
	display: flex;
	font-family: "Indie Flower", cursive;
}




@media screen and (max-width: 480px) {
	#Home {
		display: flex;
		flex-direction: column;
		gap: 5px;
	}

	.homepage_pic img {
		width: 90%;
		margin-top: 40px;
	}
	
	
	.homepagetext #title {
	  font-size: 2.5rem;
	  
	}

  
	.homepagetext #subtitle {
	  font-size: 24px;
	
	}
  
	.homepagetext #interest {
	  font-size: 36px;
	  padding-top: 50px;
	}
  
	.abhead {
	  font-size: 20px;
	}
  
	#abt {
	  font-size: 16px;
	}
  
	.myinterest h1 {
	  font-size: 24px;
	  margin-top: 20px;
	  margin-left: 30px;
	}
  
	.cardimg img {
	  width: 80px;
	  height: 80px;
	 
	}
  
	.contact1 {
	  font-size: 20px;
	}
  
	.footer {
	  font-size: 14px;
	}
  
	.homepage_pic img {
	  height: 200px;
	  width: 200px;
	}
  
	.navbar ul li {
	  font-size: medium;
	}
  
	.socialicons i {
	  font-size: 16px;
	}
  }
  
   
  @media screen and (min-width: 481px) and (max-width: 768px) {
	.homepagetext #title {
	  font-size: 4rem;
	}
	
	#Home {
		display: flex;
		flex-direction: column;
		gap: 5px;
	}

    .homepage_pic img {
		margin-top: 50px;
	}
  
	.homepagetext #subtitle {
	  font-size: 30px;
	}
  
	.homepagetext #interest {
	  font-size: 48px;
	  padding-top: 80px;
	}
  
	.abhead {
	  font-size: 30px;
	}
  
	#abt {
	  font-size: 18px;
	}
  
	.myinterest h1 {
	  font-size: 32px;
	  margin-top: 40px;
	  margin-left: 40px;
	}
  
	.cardimg img {
	  width: 130px;
	  height: 130px;
	  
	}
  
	.contact1 {
	  font-size: 24px;
	}
  
	.footer {
	  font-size: 16px;
	}
  
	.homepage_pic img {
	  height: 300px;
	  width: 300px;
	}
  
	.navbar ul li {
	  font-size: large;
	}
  
	.socialicons i {
	  font-size: 20px;
	}
  }
  
  
  @media screen and (min-width: 769px) and (max-width: 1024px) {
	#Home {
		display: flex;
		flex-direction: column;
		gap: 5px;
	}
	
	.homepage_pic img {
		margin-top: 50px;
	}
	.homepagetext #title {
	  font-size: 5rem;
	}
  
	.homepagetext #subtitle {
	  font-size: 36px;
	}
  
	.homepagetext #interest {
	  font-size: 60px;
	  padding-top: 80px;
	}
  
	.abhead {
	  font-size: 40px;
	}
  
	#abt {
	  font-size: 22px;
	}
  
	.myinterest h1 {
	  font-size: 40px;
	  margin-top: 60px;
	  margin-left: 60px;
	}
  
	.cardimg img {
	  width: 200px;
	  height: 200px;
	}
  
	.contact1 {
	  font-size: 30px;
	}
  
	.footer {
	  font-size: 18px;
	}
  
	.homepage_pic img {
	  height: 400px;
	  width: 400px;
	}
  
	.navbar ul li {
	  font-size: x-large;
	}
  
	.socialicons i {
	  font-size: 24px;
	}
  }
  

 
  
