* {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'Inter';
	src: url('fonts/Inter_18pt-Regular.ttf');
	font-weight: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('fonts/Inter_18pt-SemiBold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: 'Inter';
	src: url('fonts/Inter_24pt-Bold.ttf');
	font-weight: 700;
}

@font-face {
	font-family: 'Inter';
	src: url('fonts/Inter_24pt-Black.ttf');
	font-weight: 900;
}

body {
	min-width: 320px;
	font-family: Inter;
	background-color: #192232;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

header {
	background: #121a29;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 999;
	padding: 20px 0;
	border-bottom: 4px solid rgba(28, 102, 252, 0.3);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 20px);
	max-width: 600px;
	margin-top: 20px;
}

nav a {
	background: #fff;
	width: calc(50% - 5px);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
	height: 40px;
}

.btn-blue {
	background: #75c8fd;
	background-image: linear-gradient(to bottom, #75c8fd, #1c66fc);
	border-top: 2px solid #75c8fd;
	color: #fff;
}

.btn-blue:hover {
	background-image: linear-gradient(to bottom, #1c66fc, #75c8fd);
}

.btn-dark {
	background: #192232;
	background-image: linear-gradient(to bottom, #212f44, #192232);
	border-top: 2px solid #212f44;
	color: #fff;
}

.btn-dark:hover {
	background-image: linear-gradient(to bottom, #192232, #212f44);
}

aside {
	width: 100%;
	max-width: 1180px;
	margin: 25px auto;
	border-radius: 25px;
	background-image: url(images/bg.webp);
	min-height: 200px;
	background-size: cover;
	padding: 45px 0;
}

.target {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background: rgba(0, 0, 0, 0.5);
	max-width: 600px;
	border-radius: 25px;
	min-height: 200px;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	padding: 20px 0;
}

.target-sm {
	text-align: center;
}

.target-xl {
	color: #75c8fd;
	font-weight: 900;
	font-size: 38px;
	margin: 10px 0 2px 0;
	text-align: center;
}

.target a {
	font-size: 16px;
	border-radius: 25px;
	font-weight: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
	height: 40px;
	width: 200px;
	background: #75c8fd;
	background-image: linear-gradient(to bottom, #75c8fd, #1c66fc);
	border-top: 2px solid #75c8fd;
	color: #fff;
	margin-top: 15px;
}

article {
	width: 100%;
	max-width: 1180px;
	margin: 25px auto;
}

.text {
	background: #121a29;
	width: calc(100% - 40px);
	padding: 20px;
	border-radius: 25px;
	color: rgba(255, 255, 255, 0.8);
	border-top: 5px solid #212f44;
	margin-bottom: 25px;
}

.text h1 {
	color: #fff;
	font-size: 32px;
	margin-bottom: 15px;
}

.text h2 {
	color: #fff;
	font-size: 28px;
	margin-bottom: 15px;
}

.text ol,
.text ul {
	list-style-position: inside;
}

.text p,
.text ol,
.text ul {
	line-height: 28px;
	margin-bottom: 15px;
}

.text figcaption {
	text-align: center;
	font-style: italic;
	font-size: 14px;
}

.text figure {
	margin-bottom: 16px;
	text-align: center;
}

.text table {
	width: 100%;
	border-collapse: collapse;
}

.text .tablewrap {
	overflow-x: scroll;
}

.text table td {
	border: 1px solid #212f44;
	padding: 15px;
	color: #fff;
	font-size: 15px;
}

.text blockquote {
	border-right: 6px solid #1c66fc;
	border-top: 6px solid #1c66fc;
	padding: 15px;
	background: rgba(28, 102, 252, 0.2);
	margin-bottom: 15px;
	line-height: 30px;
	border-radius: 0 25px 25px 0;
}

section {
	width: 100%;
	max-width: 1180px;
	margin: 25px auto;
	background: #121a29;
	border-radius: 25px;
	border-top: 5px solid #212f44;
	margin-bottom: 25px;
	display: flex;
	justify-content: space-evenly;
	padding: 25px 0px;
}

section img {
	width: 11%;
}

@media (max-width: 800px) {
	section {
		flex-wrap: wrap;
	}

	section img {
		width: 20%;
		margin: 0 20px;
		margin-bottom: 20px;
	}
}

footer {
	background: #121a29;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
}

footer nav {
	margin: 0 0 20px 0;
}

footer p {
	font-size: 14px;
	color: #fff;
	padding-top: 15px;
}

footer p span {
	color: #0090ff;
}

.up {
	display: block;
	width: 60px;
	height: 60px;
	background-image: url(images/arrow.svg);
	background-size: contain;
	position: fixed;
	bottom: 50px;
	right: 20px;
}

@media (max-width: 400px) {
	.text {
		width: calc(100% - 20px);
		padding: 20px 10px;
	}
	.text table td {
		padding: 10px 5px;
	}
	section img {
		width: calc(50% - 40px);
	}
	.up {
		display: none;
	}
}
