
section {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

img {
	width: 400px; 
	border-radius: 10px;
}

.section-1 {
	background-color: #dbe6eb;
}

.section-2 {
	background-color: skyblue;
}

.section-3 {
	background-color: rgba(255, 0, 0, 0.784);
}

.hidden-left {
	opacity: 0;
	transform: translateX(-100%);
}

.image {
	transition: all 1.5s ease-in;
}

