@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700|Work+Sans:300,400,500,600,700');

body {
	background-color: #0a0a0a;
	display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
	font-family: "Open Sans", sans-serif;
	font-style: normal;
	margin-top: 100px;
}

.text{
    font-weight: 500;
    color: #FFF;
    margin-bottom: -15px;
}

.subtext{
	font-weight: 100;
	color: #a0a0a0;
	font-style: italic;
	transition: 0.4s all;
}

.subtext:hover{
	font-weight: 400;
	color: #b8b8b8;
}

.img-o{
	overflow: hidden;
	display: flex;
	border-radius: 2em;
	object-fit: contain;
	max-width: 540px;
	transition: 0.8s all;
}

.img-o:hover{
	transform: scale(1.03);
	box-shadow: rgba(255, 255, 255, 0.041) 0px 4px 120px;
}

img{
    display: block;
	width: 100%; 
	height: auto;
	transition: 0.4s all;
}

img:hover{
	transform: scale(1.07);
	cursor: help;
}