* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background: #ecf0f1;
}

header {
	width: 100%;
	background: #780ea5;
	text-align: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 5px 0;
}

header a {
	color: #f2f2f2;
	text-decoration: none;
	text-transform: capitalize;
	font-size: 27px;
}

.pages {
	width: 100%;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	background: #780ea5;
	padding: 5px 0;
	position: sticky;
	top: 0;
}

.pages a {
	text-decoration: none;
	display: inline-block;
	font-size: 15px;
	color: #f2f2f2;
	padding: 3px 6px;
	letter-spacing: 0.6px;
	text-transform: capitalize;
	border-radius: 4px;
	margin-bottom: 3px;
}

.pages a:hover {
	background: #2980b9;
	color: #fff;
}

.container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.emoji-cat {
	width: 1200px;
	max-width: 100%;
	margin: 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.emoji-cat h2 {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	font-size: 23.5px;
	letter-spacing: 0.6px;
	color: #555;
}

.getemoji {
	text-align: center;
	margin: 4px;
	background: #fff;
	cursor: pointer;
	font-size: 40px;
	padding: 10px 17px;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 7px;
}

.getemoji:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.back-to-top {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2c3e50;
	color: #fff;
	position: fixed;
	right: 3px;
	bottom: 100px;
	cursor: pointer;
	font-size: 25px;
	font-weight: bold;
	transform: rotate(-90deg);
	border-radius: 5px;
}

.cover {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0, 0.6);
	z-index: 88;
	display: none;
}

.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #f3f3f3;
	width: calc(100% - 20px);
	height: 150px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	z-index: 99;
	display: none;
}

#popup-emoji {
	font-size: 60px;
	width: 100%;
	text-align: center;
}

.popup button {
	font-size: 23px;
	margin: 0 3px;
	padding: 5px 20px;
	color: #f3f3f3;
	border: none;
	outline: none;
	text-transform: capitalize;
}

#copy {
	background: #d63031;
}

#share {
	background: #00b894;
}
