* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scrollbar-width: none;
	user-select: none;
	user-zoom: none;
	font-family: sans-serif;
	color: white;
}

body {
	
	background: #222;

}

header {
	background: linear-gradient(320deg, #092d4a, #310331);
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 0 10px black;
	padding: 7px;
	position: sticky;
	top: 0;
}

i {
	transform: scale(1.6);
	cursor: pointer;
}

a {
	color: cyan;
	text-shadow: 0 0 10px cyan;
}

main {
	padding: 25px;
	border-radius: 20px;
	display: block;
	margin: 30px auto;
	width: 80%;
}

section {
	border-radius: 20px;
	padding: 20px;
	margin-top: 20px;
	background: rgba(0, 0, 0, .4);
	display: flex;
	flex-direction: column;
	gap: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

h2 {
	text-align: center;
}

.box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}

.images {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	width: 100%;
}

span {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #111;
	padding: 5px;
	border-radius: 3px;
	border: 1.5px solid cyan;
	cursor: pointer;
	transition: all 0.4s ease-out;
	&:hover {
		box-shadow: 0 0 10px darkcyan;
	}
}

@media screen and (max-width: 600px) {
	main {
		width: 100%;
	}
}

@media screen and (max-width: 500px) {
	.images {
		flex-direction: column;
	}
}