/*$bp-largest: 75em;    //1200px
$bp-large: 62.5em;    //1000px
$bp-medium: 50em;     //800px
$bp-small: 37.5em;    //600px*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}


body {
    font-family: 'Roboto', sans-serif;
	background: #fff;
    color: #000;
    font-weight: 500;
    line-height: 1.6;
    height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content {
	padding: 2rem;
	text-align: center;
}

.content img {
	display: block;
	width: 100%;
	max-width: 18rem;
	margin: 0 auto 2rem;
}

.content p {
	font-size: 1.5rem;
}