* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: rebeccapurple;
}

.wrap {
	width: 100%;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	background-color: rebeccapurple;
}

.title {
	font-size: 45px;
	font-weight: 900;
	font-family: 'Press Start 2P', cursive;
	color: white;
}

.btn {
	line-height: 50px;

	font-size: 20px;
	font-weight: 900;
	font-family: 'Press Start 2P', cursive;
	color: rebeccapurple;

	background-color: white;

	padding: 0px 25px;
	margin-top: 25px;

	cursor: pointer;
	transition: .1s linear;
}

.insects {
	display: flex;
}

.insect_item {
	width: 150px;
	height: 150px;

	border: 3px solid #fff;

	margin: 25px;

	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;

	color: white;

	cursor: pointer;
	transition: .1s linear;
}

.insect_name {
	font-size: 15px;
	font-weight: 900;
	font-family: 'Press Start 2P', cursive;

	margin-top: 5px;
}

.icon {
	width: 100px;
	height: 100px;

	margin-top: 10px;
}

.insect_item:hover {
	background-color: white;
	color: rebeccapurple;
}

.bottom_text {
	font-size: 25px;
	font-family: 'Press Start 2P', cursive;
	font-weight: 900;
	color: white;
}

.time {
	position: absolute;
	top: 20px;
	left: 25px;
}

.score {
	position: absolute;
	top: 20px;
	right: 25px;
}

.icon_game {
	position: relative;
	transform: translate(-50%, -50%) scale(1);
	cursor: pointer;
}

.bottom {
	width: 100%;
	height: 100vh;

	background-color: rebeccapurple;
}

.time_complexity {
	display: flex;
	align-items: center;
	justify-content: center;

	position: relative;
	bottom: 175px;

	font-family: 'Press Start 2P', cursive;
	color: #fff;
}

.time_complexity_btn {
	font-size: 25px;
	color: #fff;

	letter-spacing: -2px;
}

.time_complexity_choose {
	display: flex;

	margin-left: 5px;
}

.time_complexity_choose_item {
	border: 3px solid #fff;

	padding: 10px 10px;
	margin: 0px 10px;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	cursor: pointer;
	transition: .1s linear;
}

.time_complexity_choose_item:hover {
	background-color: whitesmoke;
	color: rebeccapurple;
}

.time_complexity_choose_item_condition {
	margin-top: 5px;
}

.active {
	background-color: whitesmoke;
	color: rebeccapurple;
}

.results_container {
	width: 500px;
	height: 415px;

	background-color: whitesmoke;

	display: flex;
	align-items: center;
	flex-direction: column;

	font-family: 'Press Start 2P', cursive;
	color: rebeccapurple;
}

.user_score {
	font-size: 50px;
	text-align: center;

	margin-top: 25px;
}

.user_points {
	font-size: 100px;

	margin-top: 50px;
}

.results_btn {
	line-height: 50px;

	font-size: 20px;
	font-weight: 900;
	font-family: 'Press Start 2P', cursive;
	color: whitesmoke;

	background-color: rebeccapurple;

	padding: 0px 25px;
	margin-top: 50px;

	cursor: pointer;
	transition: .1s linear;
}

.rules {
	width: 100vw;
	line-height: 100px;

	background-color: whitesmoke;

	text-align: center;

	position: relative;
	bottom: 100px;
}

.rules_text {
	font-size: 20px;
	font-family: 'Press Start 2P', cursive;
}
