@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	-webkit-text-size-adjust: none;
	font-family: 'Inter', sans-serif;
}

.hello-container {
	margin-top:40px;
	border:0px solid #000;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.hello-wrapper {
	display: flex;
	flex-direction: column;
}
	.hello-top {
		display: flex;
		justify-content: center;
	}
		.uc-img {
			width:300px;
			height:auto;
		}
	.hello-welcome {
		display: flex;
		justify-content: center;
		margin-top:10px;		
	}	
.hello-bottom {
	position:absolute;
	bottom:10px;
	display: flex;
	width:100%;
	justify-content: center;
	align-items: center;
}
	.hello-copy {
		display: flex;
		justify-content: center;
		color: #72777c;
	}	

@media screen and (min-width: 768px) and (max-width:1023px) {

}

@media screen and (min-width: 320px) and (max-width:767px) {
	.uc-img {
		width:200px;
	}
}
		
@media screen and (max-width:319px) {
	.uc-img {
		width:160px;
	}
}