@import url('https://db.onlinewebfonts.com/a/JQdQP367PwEu216zsCtjN3Eje5rFxMjujspoM2RJ9UPxF0ZF');

body {
	font-size: 16px;
	background-color: #1d1f24;
    color: #3d3c4a;
	font-family: "Arboria-Book";
}

a { color: #032d5c; }
a:hover { color: #002855; }
p, ul { margin: 0; padding: 0; }
ul { list-style: none; }

a:active, a:focus {
	outline: 0;
	border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	line-height: normal;
}

a,
a:hover,
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}

button,
button:focus,
button:active,
button:hover {
	outline: none;
}

header {
	background-color: #101114;
	padding: 15px 0;
}

header .wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

header .logo {
	display: block;
	width: 110px;
}

header .logo img {
	width: 100%;
}

header nav ul {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

header nav ul li a {
	border-radius: 40px;
	display: block;
	padding: 4px 15px;
	font-size: 14px;
	font-weight: 600;
	border: 2px solid transparent;
	text-align: center;
}

header nav ul li a.login {
	background-color: transparent;
	color: #fefefe;
	border-color: #454956;
}

header nav ul li a.register {
	background-color: #03f295;
	color: #101114;
}

.intro {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	background-image: url(../img/intro.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.intro .form {
	background: rgba(29, 31, 36, .8);
	padding: 50px;
	width: 650px;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 20px;
}

.intro h1 {
	color: #fefefe;
	font-size: 30px;
	font-weight: 200;
}

.intro h1 span {
	color: #fff;
	font-weight: 700;
}

.choice {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.choice .item {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #101114;
	min-height: 120px;
	border-radius: 10px;
	position: relative;
	transition: .1s;
}

.choice .item:hover {
	background-color: #03f295;
}

.choice .item h5 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	transition: .1s;
}

.choice .item:hover h5{
	color: #101114;
}

.choice .item a {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.tiles {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 5px;
}

.tiles .item {
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	border-radius: 5px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: .2s;
}

.tiles .item:hover {
	border-color: #03f295;
}

footer {
	background-color: #101114;
	padding: 50px 0;
}

footer ul li a {
	color: #9ca1b0;
	font-weight: 500;
	font-size: 14px;
}

footer ul li a:hover {
	color: #CED0D8;
}

footer .footer-bottom {
	border-top: 1px solid #292929;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 20px;
	padding-top: 20px;
}

footer .footer-bottom ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

footer .logo {
	width: 250px;
}

footer .logo img {
	width: 100%;
}

.pt0 { padding-top: 0px !important; }
.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }

@media (min-width: 0px) and (max-width: 991px) {
	
	header {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	header .logo {
		width: 220px;
	}

	main {
		max-width: 100%;
	}
	
}

@media (min-width: 1200px) {
	.container {
		max-width: 1280px;
	}
}