@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");
@import url('https://fonts.cdnfonts.com/css/youtube-sans');

*{
	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;
	background-repeat: no-repeat;
	font-family: 'Poppins', sans-serif;
    background: #353836 no-repeat center top fixed;
    background-size: cover;
}

.btn{
	cursor: pointer;
	text-decoration: none;
}

header{
	height: 60px;
	display: flex;
	justify-content: space-between;
	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;
	z-index: 10;
}

#navBtn {
  transition: .5s ease-in-out;
  
}

#navBtn[data-state="open"] {
  transition: .5s ease-in-out;
  transform: rotate(180deg);
}

#navMid {
	justify-content: space-between;
	align-items: center;
	padding: 10px 5%;
}

#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 {
	display: flex;
	flex-wrap: wrap;
	margin-left: 3%;
	margin-right: 3%;
	justify-content: center;
	text-align: left;
}

#main div {
	border: 0px solid red;
	border-radius: 10px;
	max-width: 175px;
	max-height: 365px;
	padding: 5px;
	position: relative;
	margin: 5px;
	background-color: #383c3a;
	box-shadow: 1px 2px 5px #161616;
	overflow: hidden;
	transition: all 0.3s ease 0s;
	z-index: 1;	
}

#main div:hover {
	background-color: #4a4f4d;
	box-shadow: 1px 2px 5px #202020;
}

@media only screen and (max-width: 450px) {
	#main div {
		border: 0px solid red;
		border-radius: 10px;
		max-width: 70%;
		min-width: 70%;
		max-height: 25%;
		padding: 5px;
		position: relative;
		margin: 10px;
		background-color: #383c3a;
		box-shadow: 1px 2px 5px #161616;
		overflow: hidden;
	}
}

#main div img {
	object-fit: cover;
	border-radius: 7px;
	transition: all 0.3s ease 0s;
	box-shadow: 1px 1px 2px #161616;
	width: 100%;
	height: 165px;
}

@media only screen and (max-width: 450px) {
	#main div img {
		object-fit: cover;
		border-radius: 7px;
		transition: all 0.3s ease 0s;
		box-shadow: 1px 1px 2px #161616;
		width: 100%;
		height: 200px;
	}
}
#main div img:hover {
	border-radius: 2px;
	box-shadow: 4px 4px 10px #161616;
}

#main div h3{
	font-size: 110%;
	width: 100%;
	padding: 3px;
}

@media only screen and (max-width: 450px) {
	#main div h3{
		font-size: 125%;
		width: 100%;
		padding: 3px;
	}
}

#main div p{
	font-size: 90%;
	width: 100%;
	padding: 3px;
	font-family: "YouTube Sans Dark", sans-serif;
}

@media only screen and (max-width: 450px) {
	#main div p{
		font-size: 90%;
		width: 100%;
		padding: 3px;
	}
}

#soneklenen {
	text-align: center;
	font-size: 175%;
}


footer {
	margin-top: 25px;
	background-color: #08aa64;
	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: #08aa64;
		color: #fff;
		padding: 1em;
		text-align: center;
		font-size: 75%;
	}
}