/*		GLOBAL RESET		*/

{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

html, body, header, section, article, figure, aside, blockquote, nav, ul, li, a, img, h1, h2, h3, p, footer {
	margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: inherit;
    font-style: normal;
    vertical-align: baseline;
    background: transparent;
    border: 0;
    outline: 0;
    text-decoration: none;
}

img {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

article,
aside,
figure,
img,
footer,
header,
nav,
section {
    display: block
}


body {
	line-height: 1;
}

ul, li {
	list-style: none;
}

/*		END global reset	*/

body {
	background-color: #ecf0f1;
}

h1 {
	font-family: "neue-kabel", sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 10.25em;
	text-align: center;
	
}

h2 {
	font-family: "neue-kabel", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.8em;
	text-align: center;
	margin-top: -0.5em;
}

.identity {
	position: absolute;
	top: 10em;
	left: 0;
	width: 100vw;
}

p {
	font-family: "neue-kabel", sans-serif;
	font-weight: 200;
	font-style: normal;
	text-align: center;
	font-size: 2em;
	padding-top: 2em;
}

span.u {
	border-bottom: 2px dotted #c3c3c3;
	padding-bottom: 0.01em;
}


/*		PHASE		*/

:root {
  --main-color: #ecf0f1;
  --point-color: #5555;
  --size: 15px;
}

.phase {
	background-color: var(--main-color);
	overflow: hidden;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0; 
	left: 0;
	display: flex;
	align-items: center;
	align-content: center; 
	justify-content: center;  
	z-index: -1;
}

.loader__element {
  border-radius: 100%;
  border: var(--size) solid var(--point-color);
  margin: calc(var(--size)*2);
}

.loader__element:nth-child(1) {
  animation: preloader .8s ease-in-out alternate infinite;
}

.loader__element:nth-child(2) {
  animation: preloader .9s ease-in-out alternate .4s infinite;
}

.loader__element:nth-child(3) {
  animation: preloader .8s ease-in-out alternate .6s infinite;
}

.loader__element:nth-child(4) {
  animation: preloader .9s ease-in-out alternate .8s infinite;
}

.loader__element:nth-child(5) {
  animation: preloader .8s ease-in-out alternate .10s infinite;
}

@keyframes preloader {
  100% { transform: scale(4); }
}


