
@import "/styles/base.scss";

Transitions
{
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.example_panel {
	border: 4px solid black;
	width: 200px;
	height: 150px;
	border-radius: 8px;
	background-color: white;
	color: #444;
	margin: 40px;
	font-size: 16px;
	justify-content: center;
	align-items: center;
	font-weight: bolder;
	flex-direction: column;

	&:hover {
		transform: rotate(180deg);
	}

	.little {
		font-size: 12px;
	}
}