body {
	animation: slidein ease 2500ms;
	animation-iteration-count: 1;
	animation-fill-mode : forwards;
}

@keyframes slidein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.banner {
    display: flex;
    justify-content: center;
	flex-wrap: wrap;
}

.banner img {
    width: 27rem;
}
