@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:500&display=swap");


*{
	scroll-behavior: smooth;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style:none;
	text-decoration: none;
	max-width: 100%;
	
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	user-drag: none;
	-webkit-touch-callout: none;
}
body {
	background-color: #353836;
	font-family: "Poppins", sans-serif;
}

.btn{
	cursor: pointer;
	text-decoration: none;
}

header{
	height: 60px;
	display: flex;
	justify-content: space-between;
	display: flex;
	align-items: center;
	padding: 10px 5%;
	background-color: #24252a;
	margin-bottom: 15px;
	position: -webkit-sticky; /* Safari */
	position: sticky;
	top: 0;
	z-index: 100;
}


#navHam {
	height: 100%;
	width: 0;
	position: fixed;
	top: 0;
	right: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.99);
	overflow-x: hidden;
	transition: 0.5s
}

#navBtn {
  transition: .5s ease-in-out;
}

#navBtn[data-state="open"] {
  transition: .5s ease-in-out;
  transform: rotate(180deg);
}

#navHamContent {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

#navHam a {
	padding: 5px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.2s;
}

#navHam a:hover, #navHam a:focus {
  color: #f1f1f1;
}

#navHam #closeNav {
	position: absolute;
	top: -5px;
	right: 55px;
	font-size: 40px;
}

@media only screen and (max-width: 450px) {
	header #navHam a {
		font-size: 20px
	}
	header #navHam #closeNav {
		font-size: 40px;
		top: -5px;
		right: 5px;
	}
}


#logo {
	font-weight: bold;
	font-size: 25px;
	display: flex;
	align-items: center;
}
#logo h1 {
	color: #09c372;
	font-size:31px;
	-webkit-text-stroke: 1px #313131;
}

header a{
	color: white;
	font-size: 150%;
}

main {
	
}

#main {
	
}

footer {
	margin-top: 15px;
	background-color: #09c372;
	color: #fff;
	padding: 1em;
	text-align: center;
	font-size: 85%;
	padding-bottom: .5em;
}

footer a {
	color: #fff;
	text-decoration: underline;
	padding: .1em;
}

footer a:hover {
	text-decoration: none;
}

#❤ {
	text-decoration: none;
	font-size: 90%;
}

#❗ {
	font-size: 65%;
	margin-top: 2.5px;
	padding: .5em;
	text-align: center;
	margin-left: 10%;
	margin-right: 10%;
}

@media only screen and (max-width: 450px) {
	#❗ {
		font-size: 45%;
		margin-top: 5px;
		padding: 1em;
		text-align: center;
		margin-left: 0%;
		margin-right: 0%;
	}
}

@media only screen and (max-width: 450px) {
	footer {
		background-color: #09c372;
		color: #fff;
		padding: 1em;
		text-align: center;
		font-size: 75%;
	}
}