@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;
}


#logo {
	font-weight: bold;
	font-size: 25px;
	display: flex;
	align-items: center;
}

#logo h1 {
	color: #09c372;
	font-size:31px;
	-webkit-text-stroke: 1px #313131;
}

@media only screen and (max-width: 450px) {
	#logo h1 {
		color: #09c372;
		font-size: 100%;
		-webkit-text-stroke: 1px #313131;
	}
}

main {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

#main {
	background-color: gray;
	border-radius: 5px;
}

#main #names .input-box .examplelt {
	width: 140px;
	text-align: right;
	margin-right: 10px;
	font-size: 85%;
	color: white;
}

#main #names .input-box .credit {
	width: 140px;
	text-align: right;
	margin-right: 10px;
	font-size: 85%;
	color: white;
	text-decoration: underline;
}

#main #names {
	display: flex;
	flex-direction: column;
}

#main .input-box {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

#main .input-box .inputname {
	width: 150px;
	text-align: left;
	cursor: help;
}

#main .input-box .inputcase {
	border-radius: 5px;
}

#main .input-box input {
	width: 170px;
    border-style: solid;
	border-radius: 3px;
	height: 25px;
}

#main .input-box  {
	margin-left: 10px;
	margin-right: 10px;
}

#main .input-box input[type="color"] {
	width: 170px;
}

#badges {
	background-color: gray;
}

#badges .output {
	width: 90%;
	resize: none;
	text-align: center;
	display: block;
	height: 32px;
	overflow: auto;
	overflow-x: hidden;
	cursor: pointer;
	width: 170px;
	border-radius: 5px;
}

#badges .output::-webkit-scrollbar-track{
	background-color: white;
	cursor: pointer;
}

#badges .output::-webkit-scrollbar{
	width: 5px;
	background-color: #F5F5F5;
	cursor: pointer;
}

#badges .output::-webkit-scrollbar-thumb{
	border-radius: 100px;
	background-color: #323232;
	cursor: pointer;
}


#badges .copybtn {
	line-height: 24px;
	padding: 4px 0px;
	width: 10%;
	background-color: #595959;
	font-size: 90%;
	height: 32px;
	vertical-align: middle;
	font-size: 70%;
}

#badges #markdownarea, #htmlarea, #rawarea {
	margin-bottom: 5px;
	display: flex;
}

#ads {
	margin-top: 10px;
	margin-bottom: 5px;
}

@media only screen and (min-width: 450px) {
	footer {
		margin-top: 15px;
		background-color: #09c372;
		color: #fff;
		padding: 1em;
		text-align: center;
		font-size: 85%;
		bottom: 0;
		position: sticky;
		z-index: 100;
	}
}

footer a {
	color: #fff;
	text-decoration: underline;
	padding: .1em;
}

footer a:hover {
	text-decoration: none;
}

#❤ {
	text-decoration: none;
	font-size: 90%;
}


@media only screen and (max-width: 450px) {
	footer {
		margin-top: 15px;
		background-color: #09c372;
		color: #fff;
		padding: 1em;
		text-align: center;
		font-size: 75%;
	}
}