* {
  box-sizing: border-box;
}

body {
  background-image: url("bg.png");
  background-size: 740px 550px;
  font-family: 'roboto', 'helvetica neue', arial, sans-serif;
}

.container {
    width: 50%;
    margin: auto;
}

@media only screen and (max-width: 600px) {
	.container {
		width: 90%;
	}
}

img {
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 10px;
}	