@import url("https://meyerweb.com/eric/tools/css/reset/reset.css");

/****************************************************************
 *
 *  GLOBAL
 *  
 ****************************************************************/

html {
	font-size: 62.5%;
}

body {

	font-family: 'Rubik', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans", "Ubuntu", "Droid Sans", "Helvetica Neue", sans-serif;

	font-size: 1.6rem;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;

	-webkit-font-feature-settings: "kern";
	font-feature-settings: "kern";
	-webkit-font-kerning: normal;
	font-kerning: normal;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;

	text-shadow: 1px 1px 1px rgba(0, 0, 0, .004);
	text-rendering: optimizeLegibility;

	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;

	color: white;
	background: #1446A0;
	min-height: 100vh;
	overflow-x: hidden;
}

h1,
h2 {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 0.8rem;
}

ul {
	list-style: circle;
	margin-left: 20px;
}

li {
	margin-bottom: 8px;

	ul {
		margin-top: 8px;
	}
}

p {
	margin-bottom: 15px;
	text-align: justify;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: #1446A0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/****************************************************************
 *
 *  BACKGROUND
 *  
 ****************************************************************/

.container {
	display: flex;
	justify-content: center;
}

canvas {
	position: absolute;
	background: black;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/****************************************************************
 *
 *  DOCUMENT
 *  
 ****************************************************************/


.wrapper {
	border-radius: 2.4rem;
	margin: 4.8rem;
	display: flex;
	flex-direction: column;
	background: white;
	color: black;
	padding: 3.6rem;
}

.app-list {
	margin-bottom: 15px;
}

.contacts {
	margin-top: 15px;
}

.separator {
	width: 100%;
	border-top: 1px solid #E5E5EA;
	margin: 30px 0;
}

/****************************************************************
 *
 *  MEDIA QUERIES
 *  
 ****************************************************************/


@media screen and (max-width: 60em) {
	.wrapper {
		position: relative;
		margin: 0;
		max-width: none;
		min-width: none;
		width: 100vw;
		border-radius: 0
	}
}

@media screen and (min-width: 100em) {
	html {
		font-size: 0.78vmax;
	}
}