html {
    background: url("/network.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

body {
	margin:0;
	font-family: 'Raleway', sans-serif;
	font-size:1em;
}


h2 {
	margin:0;
	font-weight:normal;
}


.img {
	background: url("/ec_thumb.jpg") center no-repeat;
    background-size: cover;
	border-radius:50%;
    width:150px;
    height:150px;
	position: relative; 
	margin:auto;
}

.backstretch:before {
    background: url("/overlay.png") repeat;
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
}

.container {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
	position: absolute;
	top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
	z-index:1
}

.box {
    width: 500px;
    margin: 5px;
    text-align: center;
	color:white;
}


@media only screen and (max-width: 500px) {
	h2 {
		font-size: 1em;
	}
	
	.box {
		width: 300px;
	}
}

