body{
	background-size: cover;
	background-position: center;
	background-image: url(../image/home-bg.jpg);
}
.main{
	width: 100%;
	padding: 0 var(--padding);
	margin-top: 2.4rem;
	justify-content: space-between;
}
.main h1{
	font-size: 3rem;
	color: var(--blue);
	margin-bottom: 2.4rem;
}
.main h2{
	font-size: 2.2rem;
	color: var(--blue);
	margin-bottom: 2.4rem;
}
.main article,
.main aside{
	flex-direction: column;
	width: 45%;
}
.main article p{
	font-size: 1.6rem;
	color: var(--black);
	margin-bottom: 1rem;
}
.main article img{
	width: 80%;
	margin: 2.4rem 0 10rem 0;
}
.main aside{
	align-items: center;
	padding-top: 10rem;
}
.main aside input{
	width: 30rem;
    height: 3.5rem;
    border-radius: 50px;
    color: var(--black);
    padding: 0 2rem;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: #F5F5F5;
    box-shadow: inset 0px 0px 4px rgb(0 0 0 / 25%);
}
.main aside button{
	font-size: 1.4rem;
    width: 30rem;
    height: 4rem;
    border-radius: 50px;
    color: var(--white);
    background-color: var(--blue);
    margin-top: 2rem;
}


/* media */

@media (max-width: 427px) {
	.main{
		flex-direction: column;
	}
	.main article,
	.main aside{
		width: 100%;
	}
	.main article img{
		margin: 2.4rem 0 0 0;
	}
	.main aside{
		align-items: flex-start;
		margin-bottom: 8rem;
	}
}