﻿body {
	background-color: rgb(255, 255, 255);
	margin-left: 0px;
	margin-top: 0px;
	font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI',
	  Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
	  sans-serif;
	font-size: calc(10px + 0.33vw);
	-webkit-font-smoothing: antialiased;
	padding: 2vh 4vw;
	color: #121314;
}

h1 {
	font-size: 1.4em;
	font-weight: 400;
	margin-bottom: 0;
}

p {
	font-size: 1em;
	font-weight: 300;
	line-height: 1.4;
	max-width: 30em;
}

a {
	text-decoration: none;
	color: #121314;
	position: relative;
	font-weight:400; 
}

a:after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 85%;
	left: -0.1em;
	right: -0.1em;
	bottom: 0;
	transition: top 200ms cubic-bezier(0, 0.8, 0.13, 1);
	background-color: rgba(148, 140, 255, 0.5);
}

a:hover:after {
	top: 0%;  
}

a:link {
	text-decoration: none;
	color: #757575;
}

a:visited {
	text-decoration: none;
	color: #757575;
}

a:hover {
	text-decoration: none;
	color: #000000;
}

a:active {
	text-decoration: none;
}

.container {
	display: flex;
	flex-direction: column;
	margin: 50px;
}

.item {

	flex-wrap: wrap;
	flex: 500px;
}


