body {
  height: 100%;
  overflow: hidden;
  margin: 0;
}
.container {
  color: #000;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Fira Sans", Avenir, "Helvetica Neue", "Lucida Grande", sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.container > img {
  width: 150px;
  margin-right: 20px;
  padding-right: 25px;
  border-right: 1px solid gray;
}
.container > div:nth-of-type(2) {
  
}
.text {
  font-size:14px;
  font-weight:normal;
  line-height:inherit;
  margin:0;
  padding:0;
}

@media (max-width: 480px) {
	.container {
		flex-direction: column;
	}
	
	.container > img {
		width: 60%;
		padding: 0 0 10px 0;
		margin: 0;
		border-right: none;
	}
	
	.text {
		font-size: 20px;
		text-align: center;
	}
}