.loader {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin: 0 auto;
	height: 125px;
	width: 100px;
	gap: 25px;
}

.rect {
	height: 30px;
	width: 50px;
	animation: squish 1.5s infinite; /* you can try experimenting with the duration and animation-iteration-count here */;
	box-shadow: 5px 5px 0 0px black;
}

.rect:nth-child(1) {
	background-color: #1A4798;
}

.rect:nth-child(2) {
	background-color: #F4C027;
	animation-delay: 200ms;
}

.rect:nth-child(3) {
	background-color: #ED1C24;
	animation-delay: 400ms;
}

@keyframes squish {
	0%, 100% {
		height: 30px;
	}
	50% {
		height: 75px;
		box-shadow: -10px -10px 0 -2px black;
		scale: 1.1;
	}
}